github.com/balzaczyy/golucene@v0.0.0-20151210033525-d0be9ee89713/core/index/model/termState.go (about)

     1  package model
     2  
     3  // TermState.java
     4  // Encapsulates all requried internal state to postiion the associated
     5  // termsEnum without re-seeking
     6  type TermState interface {
     7  	CopyFrom(other TermState)
     8  	Clone() TermState
     9  }