Antlr4.Codegen.Model.Decl.ContextGetterDecl.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            int hash = MurmurHash.Initialize();
            hash = MurmurHash.Update(hash, name);
            hash = MurmurHash.Update(hash, GetArgType());
            hash = MurmurHash.Finish(hash, 2);
            return hash;
        }