DftMap typedef

DftMap = Map<String, Ft>

Alias for Map<String, int>.

Defines a term dictionary used in an inverted index.

The DftMap is a hashmap of DftMapEntrys with the vocabulary as key and the document frequency as the values.

A DftMap can be an asynchronous data source or an in-memory hashmap.

Implementation

typedef DftMap = Map<String, Ft>;