clojure.lang.Numbers.BigIntegerOps.inc C# (CSharp) Méthode

inc() public méthode

public inc ( object x ) : object
x object
Résultat object
            public object inc(object x)
            {
                BigInteger bx = toBigInteger(x);
                return reduce(bx.add(BigIntegerOne));
            }