| 3436 | |
| 3437 | |
| 3438 | class BFill(FFill): |
| 3439 | func = M.bfill |
| 3440 | |
| 3441 | @property |
| 3442 | def before(self): |
| 3443 | # bfill is the opposite direction of ffill, so |
| 3444 | # we swap before with after of ffill. |
| 3445 | return super().after |
| 3446 | |
| 3447 | @property |
| 3448 | def after(self): |
| 3449 | # bfill is the opposite direction of ffill, so |
| 3450 | # we swap after with before of ffill. |
| 3451 | return super().before |
| 3452 | |
| 3453 | |
| 3454 | class Shift(MapOverlap): |
no outgoing calls
no test coverage detected
searching dependent graphs…