KGramsMap typedef

KGramsMap = Map<KGram, Set<Term>>

Alias for Map<String, Set<String>>.

A hashmap of KGram to Set<Term>, where the value is the set of unique Terms that contain the KGram in the key.

Implementation

typedef KGramsMap = Map<KGram, Set<Term>>;