bigloo.foreign.LE_BIGNUM C# (CSharp) Method

LE_BIGNUM() public static method

public static LE_BIGNUM ( bignum n1, bignum n2 ) : bool
n1 bignum
n2 bignum
return bool
        public static bool LE_BIGNUM( bignum  n1,
				    bignum  n2 )
        {
            return (n1.value <= n2.value);
        }
foreign