termPostings method

List<DocPostingsMapEntry> termPostings(
  1. String term
)

Returns the list of all the DocPostingsMapEntry for the term from the PostingsMap.

Implementation

List<DocPostingsMapEntry> termPostings(String term) =>
    this[term]?.entries.toList() ?? [];