(self, fns)
| 330 | return self |
| 331 | |
| 332 | def _using_post_criteria(self, fns): |
| 333 | if fns: |
| 334 | self._post_criteria.extend(fns) |
| 335 | return self |
| 336 | |
| 337 | def with_post_criteria(self, fn): |
| 338 | """Add a criteria function that will be applied post-cache. |
no test coverage detected