bigloo.foreign.CMP_BIGNUM C# (CSharp) Method

CMP_BIGNUM() public static method

public static CMP_BIGNUM ( bignum n1, bignum n2 ) : int
n1 bignum
n2 bignum
return int
        public static int CMP_BIGNUM( bignum  n1, bignum  n2 )
        {
            return (n1.value < n2.value) ? -1 : (n1.value == n2.value) ? 0 : 1;
        }
foreign