Hazelcast.Core.GreaterLessPredicate.Equals C# (CSharp) Method

Equals() protected method

protected Equals ( GreaterLessPredicate other ) : bool
other GreaterLessPredicate
return bool
        protected bool Equals(GreaterLessPredicate other)
        {
            return _value.Equals(other._value) && _less == other._less && _equal == other._equal &&
                   string.Equals(_attributeName, other._attributeName);
        }

Same methods

GreaterLessPredicate::Equals ( object obj ) : bool