Example #1
0
 def __init__(self):
   Pipe.__init__(self, nil0, str1, num_required_args=1, default_args=[strlit('')])
Example #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)
Example #3
0
 def __init__(self):
   Pipe.__init__(self, str1, str0, 1, [strlit('')])
Example #4
0
 def __init__(self):
   Pipe.__init__(self, ArbType(1), num_required_args=1)
   self.derived_type_arg_index = 0
Example #5
0
 def __init__(self):
   a = ArbType(2)
   Pipe.__init__(self, a, a.deepen(-1))
Example #6
0
 def __init__(self):
   Pipe.__init__(self, ArbType(1))
Example #7
0
 def __init__(self):
   Pipe.__init__(self, int1, int0)
Example #8
0
 def __init__(self):
   Pipe.__init__(self, str0, num_required_args=1, default_args=[strlit(None)])
Example #9
0
 def __init__(self):
   Pipe.__init__(self, str0, int0)
Example #10
0
 def __init__(self):
   Pipe.__init__(self, int0, str0)
Example #11
0
 def __init__(self):
   Pipe.__init__(self, ArbType(0), str0)
Example #12
0
 def __init__(self):
   Pipe.__init__(self, ArbType(0), int0)
Example #13
0
 def __init__(self):
   Pipe.__init__(self, str0, str1, 1, [strlit(None)])
Example #14
0
 def __init__(self):
   Pipe.__init__(self, str1, num_required_args=1)
Example #15
0
 def __init__(self):
   a = ArbType(1)
   Pipe.__init__(self, a, a.deepen(1), 1)
Example #16
0
 def __init__(self):
   Pipe.__init__(self, ArbType(1), num_required_args=1, default_args=[intlit(10)])
Example #17
0
 def __init__(self):
   Pipe.__init__(self, ArbType(0), nil0, 1, ['\n'])