- setBit(int) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is equivalent to this BigInteger with the designated bit set.
- shiftLeft(int) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is (this << n)
.
- shiftRight(int) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is (this >> n)
.
- signum() - Method in class java.math.BigInteger
-
Returns the signum function of this BigInteger.
- subtract(BigInteger) - Method in class java.math.BigInteger
-
Returns a BigInteger whose value is (this - val)
.