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

Greater() private method

private Greater ( 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 Greater(
            BinaryOpStorage/*!*/ compareStorage,
            BinaryOpStorage/*!*/ lessThanStorage,
            BinaryOpStorage/*!*/ greaterThanStorage,
            object self, object other) {

            return Compare(compareStorage, lessThanStorage, greaterThanStorage, self, other).GetValueOrDefault(0) > 0;
        }