(self, *args, optional: bool = False, context=None)
| 126 | |
| 127 | @trace_user_frame |
| 128 | def ix_ref(self, *args, optional: bool = False, context=None) -> TableSlice: |
| 129 | new_table = self._table.ix_ref(*args, optional=optional, context=context) |
| 130 | return TableSlice( |
| 131 | {name: new_table[colref._name] for name, colref in self._mapping.items()}, |
| 132 | new_table, |
| 133 | ) |
| 134 | |
| 135 | @property |
| 136 | def slice(self): |
nothing calls this directly
no test coverage detected