We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2652d6d + 6a3e0f0 commit df53f5dCopy full SHA for df53f5d
fn/func.py
@@ -40,11 +40,11 @@ def __ensure_callable(self, f):
40
return self.__class__(*f) if isinstance(f, tuple) else f
41
42
def __rshift__(self, g):
43
- """Overload << operator for F instances"""
+ """Overload >> operator for F instances"""
44
return self.__class__.__compose(self.__ensure_callable(g), self.f)
45
46
def __lshift__(self, g):
47
- """Overload >> operator for F instances"""
+ """Overload << operator for F instances"""
48
return self.__class__.__compose(self.f, self.__ensure_callable(g))
49
50
def __call__(self, *args, **kwargs):
0 commit comments