(self, ufunc, compare, fill_value)
| 6742 | |
| 6743 | """ |
| 6744 | def __init__(self, ufunc, compare, fill_value): |
| 6745 | super().__init__(ufunc) |
| 6746 | self.compare = compare |
| 6747 | self.fill_value_func = fill_value |
| 6748 | |
| 6749 | def __call__(self, a, b): |
| 6750 | "Executes the call behavior." |