Lucene.Net.Search.TestPositiveScoresOnlyCollector.SimpleScorer.NextDoc C# (CSharp) Method

NextDoc() public method

public NextDoc ( ) : int
return int
            public override int NextDoc()
            {
                return ++Idx != Scores.Length ? Idx : NO_MORE_DOCS;
            }
TestPositiveScoresOnlyCollector.SimpleScorer