Coverage for src/topsim/localtyping.py: 100%

6 statements  

« prev     ^ index     » next       coverage.py v7.8.0, created at 2025-04-04 17:54 -0700

1from collections.abc import Iterable, Mapping, Sequence 

2 

3RawStringSet = list[str] 

4StringSet = list[int] 

5 

6GramMap = dict[str, int] 

7 

8Index = Mapping[int, Sequence[tuple[int, Sequence[int]]]] 

9 

10Output = Iterable[tuple[float, Iterable[int]]]