Java BigInteger Calculate firstLtSecond(BigInteger first, BigInteger second)

Here you can find the source of firstLtSecond(BigInteger first, BigInteger second)

Description

first Lt Second

License

Apache License

Declaration

private static boolean firstLtSecond(BigInteger first, BigInteger second) 

Method Source Code


//package com.java2s;
//License from project: Apache License 

import java.math.BigInteger;

public class Main {
    private static boolean firstLtSecond(BigInteger first, BigInteger second) {
        return first.compareTo(second) == -1;
    }//from  w w  w .j  a va2s .c om
}

Related

  1. extractBoolean(BigInteger bi, int index)
  2. extractFloat(BigInteger bi, int start, int end, int decimal)
  3. extractInt(BigInteger bi, int start, int end)
  4. fill(BigInteger[] array, BigInteger value)
  5. first(BigInteger i, BigInteger j)
  6. gcd(BigInteger a, BigInteger b)
  7. GCD(BigInteger x, BigInteger y)
  8. gcd(BigInteger... values)
  9. gcd(Iterable nums)