Jose\Util\BigInteger::subtract PHP Метод

subtract() публичный Метод

@param \Jose\Util\BigInteger $y
public subtract ( BigInteger $y ) : BigInteger
$y BigInteger
Результат BigInteger
    public function subtract(BigInteger $y)
    {
        $value = gmp_sub($this->value, $y->value);
        return self::createFromGMPResource($value);
    }