clojure.lang.Numbers.BigIntegerOps.isNeg C# (CSharp) Метод

isNeg() публичный Метод

public isNeg ( object x ) : bool
x object
Результат bool
            public bool isNeg(object x)
            {
                BigInteger bx = toBigInteger(x);
                return bx.signum() < 0;
            }