IronRuby.Builtins.RangeOps.Equals C# (CSharp) Method

Equals() private method

private Equals ( BinaryOpStorage equals, Range self, [ other ) : bool
equals BinaryOpStorage
self Range
other [
return bool
        public static bool Equals(BinaryOpStorage/*!*/ equals, Range/*!*/ self, [NotNull]Range/*!*/ other) {
            if (self == other) {
                return true;
            }
            return Protocols.IsEqual(equals, self.Begin, other.Begin)
                && Protocols.IsEqual(equals, self.End, other.End)
                && self.ExcludeEnd == other.ExcludeEnd;
        }

Same methods

RangeOps::Equals ( Range self, object other ) : bool