(
self, ifc_file: ifcopenshell.file, elements: Optional[list[ifcopenshell.entity_instance]]
)
| 114 | return self |
| 115 | |
| 116 | def filter( |
| 117 | self, ifc_file: ifcopenshell.file, elements: Optional[list[ifcopenshell.entity_instance]] |
| 118 | ) -> list[ifcopenshell.entity_instance]: |
| 119 | if not elements: |
| 120 | return [] |
| 121 | return [e for e in elements if self(e)] |
| 122 | |
| 123 | def to_string( |
| 124 | self, |
no outgoing calls
no test coverage detected