Lucene.Net.Spatial.Prefix.IntersectsPrefixTreeFilter.GetHashCode C# (CSharp) Method

GetHashCode() public method

LUCENENET specific: need to override GetHashCode to prevent a compiler warning and realistically, the hash code should work similarly to Equals.
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return HashHelpers.CombineHashCodes(base.GetHashCode(), hasIndexedLeaves.GetHashCode());
        }