Java BigInteger Value Check isCovers(BigInteger covers, BigInteger value)

Here you can find the source of isCovers(BigInteger covers, BigInteger value)

Description

is Covers

License

Open Source License

Declaration

public static boolean isCovers(BigInteger covers, BigInteger value) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import java.math.BigInteger;

public class Main {
    public static boolean isCovers(BigInteger covers, BigInteger value) {
        return covers.compareTo(value) > -1;
    }// w  w  w  .  ja  va2s . co  m
}

Related

  1. isBigger(final BigInteger big1, final BigInteger big2)
  2. isDefined(BigInteger no)
  3. isElementOfZn(BigInteger element, BigInteger n)
  4. isEven(BigInteger x)
  5. isFermatNumber(BigInteger f)