Get the forward mapping from a (character string, glyph index)-pair. This may return *None* if the pair is not currently mapped.
(self, charcodes: str,
glyph_index: GlyphIndexType)
| 127 | tuple[CharacterCodeType, GlyphIndexType]] = {} |
| 128 | |
| 129 | def get(self, charcodes: str, |
| 130 | glyph_index: GlyphIndexType) -> tuple[int, CharacterCodeType] | None: |
| 131 | """ |
| 132 | Get the forward mapping from a (character string, glyph index)-pair. |
| 133 | |
| 134 | This may return *None* if the pair is not currently mapped. |
| 135 | """ |
| 136 | return self._forward.get((charcodes, glyph_index)) |
| 137 | |
| 138 | def iget(self, subset: int, |
| 139 | subset_charcode: CharacterCodeType) -> tuple[str, GlyphIndexType]: |
no outgoing calls