BigInteger.multiply

Returns a BigInteger whose value is {@code (this * val)}.

@implNote An implementation may offer better algorithmic performance when {@code val == this}.

@param val value to be multiplied by this BigInteger. @return {@code this * val}

  1. BigInteger multiply(BigInteger val)
    class BigInteger
  2. BigInteger multiply(long v)

Meta