clojure.lang.Numbers.LongOps.lt C# (CSharp) Method

lt() public method

public lt ( object x, object y ) : bool
x object
y object
return bool
            public bool lt(object x, object y)
            {
                return Util.ConvertToLong(x) < Util.ConvertToLong(y);
            }