(self)
| 177 | return out |
| 178 | |
| 179 | def __hash__(self) -> int: # type: ignore[override] |
| 180 | if self.box_options.get("frozen_box"): |
| 181 | hashing = 98765 |
| 182 | hashing ^= hash(tuple(self)) |
| 183 | return hashing |
| 184 | raise BoxTypeError("unhashable type: 'BoxList'") |
| 185 | |
| 186 | def to_list(self) -> list: |
| 187 | new_list: list[Any] = [] |
nothing calls this directly
no test coverage detected