(self, other)
| 392 | _freq = "ME" |
| 393 | |
| 394 | def __apply__(self, other): |
| 395 | n = _adjust_n_months(other.day, self.n, other.daysinmonth) |
| 396 | return _shift_month(other, n, "end") |
| 397 | |
| 398 | def onOffset(self, date) -> bool: |
| 399 | """Check if the given date is in the set of possible dates created |
nothing calls this directly
no test coverage detected