Home | History | Annotate | Download | only in python

Lines Matching refs:operator

22 import operator
98 return Operator(operator.add, self, g)
101 return Operator(operator.mul, self, g)
124 class Operator(Composable):
125 """A wrapper for an operator.
127 This takes an operator and an argument list and returns
128 the result of applying the operator to the results of applying
144 This overloads the regular __call__ operator for currying, i.e.,