(self)
| 1202 | return np.asarray(self, dtype=self.dtype.subtype).searchsorted(v, side, sorter) |
| 1203 | |
| 1204 | def copy(self) -> Self: |
| 1205 | values = self.sp_values.copy() |
| 1206 | return self._simple_new(values, self.sp_index, self.dtype) |
| 1207 | |
| 1208 | @classmethod |
| 1209 | def _concat_same_type(cls, to_concat: Sequence[Self]) -> Self: |
no test coverage detected