Table of Contents

Public structRead-only TermVectorEntry

Namespace
Rowles.LeanLucene.Codecs.TermVectors
Assembly
Rowles.LeanLucene.dll

A single term vector entry: term text, frequency in the document, and positions.

public readonly record struct TermVectorEntry : IEquatable<TermVectorEntry>

Public constructor TermVectorEntry(string, int, int[])

A single term vector entry: term text, frequency in the document, and positions.

Public property Freq

The number of times the term appears in the document.

Public property Positions

The token positions at which the term appears.

Public property Term

The term text.