Exemplo n.º 1
0
 public override void SeekExact(long ord)
 {
     m_input.SeekExact(ord);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Returns the term (<see cref="BytesRef"/>) corresponding to
 /// the provided ordinal.
 /// </summary>
 public virtual BytesRef LookupTerm(TermsEnum termsEnum, int ord)
 {
     termsEnum.SeekExact(ord);
     return(termsEnum.Term);
 }