(
self,
func: Callable[Concatenate[Self, P], T],
*args: P.args,
**kwargs: P.kwargs,
)
| 721 | |
| 722 | @overload |
| 723 | def pipe( |
| 724 | self, |
| 725 | func: Callable[Concatenate[Self, P], T], |
| 726 | *args: P.args, |
| 727 | **kwargs: P.kwargs, |
| 728 | ) -> T: ... |
| 729 | |
| 730 | @overload |
| 731 | def pipe( |