bigloo.foreign.FIXNUM_TO_FLONUM C# (CSharp) Method

FIXNUM_TO_FLONUM() public static method

public static FIXNUM_TO_FLONUM ( int n ) : double
n int
return double
        public static double FIXNUM_TO_FLONUM( int  n )
        {
            return (double)n;
        }
foreign