(self, f: Callable[[Shape], bool])
| 1926 | return rv |
| 1927 | |
| 1928 | def filter(self, f: Callable[[Shape], bool]) -> Compound: |
| 1929 | |
| 1930 | return compound(*filter(f, self)) |
| 1931 | |
| 1932 | def sort(self, key: Callable[[Shape], Any]) -> Compound: |
| 1933 |
nothing calls this directly
no test coverage detected