(self, other)
| 379 | _freq = "MS" |
| 380 | |
| 381 | def __apply__(self, other): |
| 382 | n = _adjust_n_months(other.day, self.n, 1) |
| 383 | return _shift_month(other, n, "start") |
| 384 | |
| 385 | def onOffset(self, date) -> bool: |
| 386 | """Check if the given date is in the set of possible dates created |
nothing calls this directly
no test coverage detected