(
self,
func: Callable[Concatenate[Self, P], T],
*args: P.args,
**kwargs: P.kwargs,
)
| 1850 | |
| 1851 | @overload |
| 1852 | def pipe( |
| 1853 | self, |
| 1854 | func: Callable[Concatenate[Self, P], T], |
| 1855 | *args: P.args, |
| 1856 | **kwargs: P.kwargs, |
| 1857 | ) -> T: ... |
| 1858 | |
| 1859 | @overload |
| 1860 | def pipe( |