예제 #1
0
 def __init__(self):
   Pipe.__init__(self, nil0, str1, num_required_args=1, default_args=[strlit('')])
예제 #2
0
 def __init__(self):
   #TODO: allow input, i.e.: [3,5,4] | `sort -n` | int ==> [3,4,5]
   Pipe.__init__(self, nil0, str1, num_required_args=1)
예제 #3
0
 def __init__(self):
   Pipe.__init__(self, str1, str0, 1, [strlit('')])
예제 #4
0
 def __init__(self):
   Pipe.__init__(self, ArbType(1), num_required_args=1)
   self.derived_type_arg_index = 0
예제 #5
0
 def __init__(self):
   a = ArbType(2)
   Pipe.__init__(self, a, a.deepen(-1))
예제 #6
0
 def __init__(self):
   Pipe.__init__(self, ArbType(1))
예제 #7
0
 def __init__(self):
   Pipe.__init__(self, int1, int0)
예제 #8
0
 def __init__(self):
   Pipe.__init__(self, str0, num_required_args=1, default_args=[strlit(None)])
예제 #9
0
 def __init__(self):
   Pipe.__init__(self, str0, int0)
예제 #10
0
 def __init__(self):
   Pipe.__init__(self, int0, str0)
예제 #11
0
 def __init__(self):
   Pipe.__init__(self, ArbType(0), str0)
예제 #12
0
 def __init__(self):
   Pipe.__init__(self, ArbType(0), int0)
예제 #13
0
 def __init__(self):
   Pipe.__init__(self, str0, str1, 1, [strlit(None)])
예제 #14
0
 def __init__(self):
   Pipe.__init__(self, str1, num_required_args=1)
예제 #15
0
 def __init__(self):
   a = ArbType(1)
   Pipe.__init__(self, a, a.deepen(1), 1)
예제 #16
0
 def __init__(self):
   Pipe.__init__(self, ArbType(1), num_required_args=1, default_args=[intlit(10)])
예제 #17
0
 def __init__(self):
   Pipe.__init__(self, ArbType(0), nil0, 1, ['\n'])