Ejemplo n.º 1
0
        public bool Equals(Node other)
        {
            if (other == null)
            {
                return(false);
            }

            return(id.Equals(other.id));
        }
Ejemplo n.º 2
0
        public bool Equals(Bucket other)
        {
            if (other == null)
            {
                return(false);
            }

            return(min.Equals(other.min) && max.Equals(other.max));
        }