bigloo.foreign.FLONUM_TO_BIGNUM C# (CSharp) Method

FLONUM_TO_BIGNUM() public static method

public static FLONUM_TO_BIGNUM ( double n ) : bignum
n double
return bignum
        public static bignum FLONUM_TO_BIGNUM( double  n )
        {
            return new bignum( n );
        }
foreign