(self, left, right, inclusive="both")
| 4422 | |
| 4423 | @derived_from(pd.Series) |
| 4424 | def between(self, left, right, inclusive="both"): |
| 4425 | return new_collection( |
| 4426 | expr.Between(self, left=left, right=right, inclusive=inclusive) |
| 4427 | ) |
| 4428 | |
| 4429 | @derived_from(pd.Series) |
| 4430 | def combine(self, other, func, fill_value=None): |