(self)
| 1994 | return self._symbol_cache[self._keys[self._n - 1]] |
| 1995 | |
| 1996 | def __len__(self): |
| 1997 | if self._symbol_cache is None: |
| 1998 | self._build_symbol_cache() |
| 1999 | return self._count |
| 2000 | |
| 2001 | def __contains__(self, value: str): |
| 2002 | try: |
nothing calls this directly
no test coverage detected