bigloo.foreign.NEG_BIGNUM C# (CSharp) Method

NEG_BIGNUM() public static method

public static NEG_BIGNUM ( bignum n ) : bignum
n bignum
return bignum
        public static bignum NEG_BIGNUM( bignum  n )
        {
            return new bignum(-n.value);
        }
foreign