Lucene.Net.Search.FieldValuesBitSets.FieldValuesBitSets C# (CSharp) Method

FieldValuesBitSets() public method

public FieldValuesBitSets ( IndexReader reader, string field ) : System
reader Lucene.Net.Index.IndexReader
field string
return System
        public FieldValuesBitSets(IndexReader reader, string field)
        {
            this.Field = field;
            this._Reader = reader;

            foreach (string val in GetFieldValues(field))
            {
                FieldValueBitSetPair.Add(val, GetBitSet(field, val));
            }
        }