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