bigloo.foreign.FLONUM_TO_FIXNUM C# (CSharp) Method

FLONUM_TO_FIXNUM() public static method

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