(self, *tables: Table)
| 1072 | |
| 1073 | @contextualized_operator |
| 1074 | def _intersect(self, *tables: Table) -> Table[TSchema]: |
| 1075 | intersecting_ids = ( |
| 1076 | self._id_column, |
| 1077 | *(table._id_column for table in tables), |
| 1078 | ) |
| 1079 | context = clmn.IntersectContext( |
| 1080 | intersecting_ids=intersecting_ids, |
| 1081 | ) |
| 1082 | |
| 1083 | return self._table_with_context(context) |
| 1084 | |
| 1085 | @trace_user_frame |
| 1086 | @check_arg_types |
no test coverage detected