Contains unicode data required to measure the cell widths of glyphs.
| 36 | |
| 37 | |
| 38 | class CellTable(NamedTuple): |
| 39 | """Contains unicode data required to measure the cell widths of glyphs.""" |
| 40 | |
| 41 | unicode_version: str |
| 42 | widths: Sequence[tuple[int, int, int]] |
| 43 | narrow_to_wide: frozenset[str] |
| 44 | |
| 45 | |
| 46 | @lru_cache(maxsize=4096) |
no outgoing calls
no test coverage detected