Example #1
0
            public bool Contains(Object o)
            {
                if (!(o is HashMapEntry))
                {
                    return(false);
                }
                HashMapEntry e         = (HashMapEntry)o;
                HashMapEntry candidate = _map.GetEntry(e.Key);

                return(candidate != null && candidate.Equals(e));
            }