Get all keys of all the layers. This will in many cases materialize layers, which makes it a relatively expensive operation. See :meth:`get_all_external_keys` for a faster alternative.
(self)
| 570 | return out |
| 571 | |
| 572 | def keys(self) -> KeysView: |
| 573 | """Get all keys of all the layers. |
| 574 | |
| 575 | This will in many cases materialize layers, which makes it a relatively |
| 576 | expensive operation. See :meth:`get_all_external_keys` for a faster alternative. |
| 577 | """ |
| 578 | return self.to_dict().keys() |
| 579 | |
| 580 | def get_all_external_keys(self) -> set[Key]: |
| 581 | """Get all output keys of all layers |
no test coverage detected