(self, key: Callable[[Shape], Any])
| 1930 | return compound(*filter(f, self)) |
| 1931 | |
| 1932 | def sort(self, key: Callable[[Shape], Any]) -> Compound: |
| 1933 | |
| 1934 | return compound(*sorted(self, key=key)) |
| 1935 | |
| 1936 | def __getitem__(self, item: int | slice) -> Shape: |
| 1937 |
no test coverage detected