Return a dictionary with the indexes of the indexed columns.
(self)
| 676 | |
| 677 | @property |
| 678 | def colindexes(self) -> _ColIndexes: |
| 679 | """Return a dictionary with the indexes of the indexed columns.""" |
| 680 | return _ColIndexes( |
| 681 | (_colpname, self.cols._f_col(_colpname).index) |
| 682 | for _colpname in self.colpathnames |
| 683 | if self.colindexed[_colpname] |
| 684 | ) |
| 685 | |
| 686 | @property |
| 687 | def _dirtyindexes(self) -> bool: |
nothing calls this directly
no test coverage detected