(self, function, *args, meta=None, **kwargs)
| 393 | return Mask(self, cond=cond, other=other) |
| 394 | |
| 395 | def apply(self, function, *args, meta=None, **kwargs): |
| 396 | return Apply(self, function, args, meta, kwargs) |
| 397 | |
| 398 | def replace(self, to_replace=None, value=no_default, regex=False): |
| 399 | return Replace(self, to_replace=to_replace, value=value, regex=regex) |