IronRuby.Builtins.Comparable.LessOrEqual C# (CSharp) Method

LessOrEqual() private method

private LessOrEqual ( BinaryOpStorage compareStorage, BinaryOpStorage lessThanStorage, BinaryOpStorage greaterThanStorage, object self, object other ) : bool
compareStorage BinaryOpStorage
lessThanStorage BinaryOpStorage
greaterThanStorage BinaryOpStorage
self object
other object
return bool
        public static bool LessOrEqual(
            BinaryOpStorage/*!*/ compareStorage,
            BinaryOpStorage/*!*/ lessThanStorage,
            BinaryOpStorage/*!*/ greaterThanStorage,            
            object self, object other) {

            return Compare(compareStorage, lessThanStorage, greaterThanStorage, self, other).GetValueOrDefault(1) <= 0;
        }