clojure.lang.Numbers.BigIntegerOps.isPos C# (CSharp) Method

isPos() public method

public isPos ( object x ) : bool
x object
return bool
            public bool isPos(object x)
            {
                BigInteger bx = toBigInteger(x);
                return bx.signum() > 0;
            }