Lucene.Net.Facet.FacetsCollector.AcceptsDocsOutOfOrder C# (CSharp) Method

AcceptsDocsOutOfOrder() public final method

public final AcceptsDocsOutOfOrder ( ) : bool
return bool
        public override sealed bool AcceptsDocsOutOfOrder()
        {
            // If we are keeping scores then we require in-order
            // because we append each score to the float[] and
            // expect that they correlate in order to the hits:
            return keepScores == false;
        }