(self, left, right, inclusive="both")
| 4438 | |
| 4439 | @derived_from(pd.Series) |
| 4440 | def between(self, left, right, inclusive="both"): |
| 4441 | return new_collection( |
| 4442 | expr.Between(self, left=left, right=right, inclusive=inclusive) |
| 4443 | ) |
| 4444 | |
| 4445 | @derived_from(pd.Series) |
| 4446 | def combine(self, other, func, fill_value=None): |