Return True if ``key`` maps to a multi-coordinate index, False otherwise.
(self, key: Hashable)
| 1806 | return unique_indexes |
| 1807 | |
| 1808 | def is_multi(self, key: Hashable) -> bool: |
| 1809 | """Return True if ``key`` maps to a multi-coordinate index, |
| 1810 | False otherwise. |
| 1811 | """ |
| 1812 | return len(self._id_coord_names[self._coord_name_id[key]]) > 1 |
| 1813 | |
| 1814 | def get_all_coords( |
| 1815 | self, key: Hashable, errors: ErrorOptions = "raise" |
no outgoing calls