diff options
author | Anthony Green <green@redhat.com> | 2001-01-08 00:27:51 +0000 |
---|---|---|
committer | Anthony Green <green@gcc.gnu.org> | 2001-01-08 00:27:51 +0000 |
commit | 6a9d31a7d48bbae78a24a1395199d5c4c048d642 (patch) | |
tree | e6058c157f2a58ea1d1cadda719e0332b688b0ae /libjava/doc/java-math.texi | |
parent | 18f988a06bd585a53af224091ef2e6a29074a511 (diff) | |
download | gcc-6a9d31a7d48bbae78a24a1395199d5c4c048d642.zip gcc-6a9d31a7d48bbae78a24a1395199d5c4c048d642.tar.gz gcc-6a9d31a7d48bbae78a24a1395199d5c4c048d642.tar.bz2 |
001-01-07 Anthony Green <green@redhat.com>
* Makefile.am (texinfo): Add texinfo target for generating texinfo
documentation.
* Makefile.in: Rebuilt.
* scripts/TexinfoDoclet.java: New file.
* doc/java-applet.texi, doc/java-lang-reflect.texi,
doc/java-awt-color.texi, doc/java-lang.texi,
doc/java-awt-datatransfer.texi, doc/java-math.texi,
doc/java-awt-event.texi, doc/java-net.texi,
doc/java-awt-geom.texi, doc/java-security-spec.texi,
doc/java-awt-image.texi, doc/java-security.texi,
doc/java-awt-peer.texi, doc/java-sql.texi, doc/java-awt.texi,
doc/java-text.texi, doc/java-beans-beancontext.texi,
doc/java-util-jar.texi, doc/java-beans.texi,
doc/java-util-zip.texi, doc/java-io.texi, doc/java-util.texi,
doc/java-lang-ref.texi: New files.
From-SVN: r38789
Diffstat (limited to 'libjava/doc/java-math.texi')
-rw-r--r-- | libjava/doc/java-math.texi | 206 |
1 files changed, 206 insertions, 0 deletions
diff --git a/libjava/doc/java-math.texi b/libjava/doc/java-math.texi new file mode 100644 index 0000000..0b2c4e2 --- /dev/null +++ b/libjava/doc/java-math.texi @@ -0,0 +1,206 @@ +@deftypemethod BigDecimal {public static BigDecimal} valueOf (long@w{ }@var{val}) + +@end deftypemethod +@deftypemethod BigDecimal {public static BigDecimal} valueOf (long@w{ }@var{val}, int@w{ }@var{scale}) @*throws NumberFormatException + +@end deftypemethod +@deftypemethod BigDecimal {public BigDecimal} add (java.math.BigDecimal@w{ }@var{val}) + +@end deftypemethod +@deftypemethod BigDecimal {public BigDecimal} subtract (java.math.BigDecimal@w{ }@var{val}) + +@end deftypemethod +@deftypemethod BigDecimal {public BigDecimal} multiply (java.math.BigDecimal@w{ }@var{val}) + +@end deftypemethod +@deftypemethod BigDecimal {public BigDecimal} divide (java.math.BigDecimal@w{ }@var{val}, int@w{ }@var{roundingMode}) @*throws ArithmeticException, IllegalArgumentException + +@end deftypemethod +@deftypemethod BigDecimal {public BigDecimal} divide (java.math.BigDecimal@w{ }@var{val}, int@w{ }@var{newScale}, int@w{ }@var{roundingMode}) @*throws ArithmeticException, IllegalArgumentException + +@end deftypemethod +@deftypemethod BigDecimal {public int} compareTo (java.math.BigDecimal@w{ }@var{val}) + +@end deftypemethod +@deftypemethod BigDecimal {public int} compareTo (java.lang.Object@w{ }@var{val}) + +@end deftypemethod +@deftypemethod BigDecimal {public boolean} equals (java.lang.Object@w{ }@var{o}) + +@end deftypemethod +@deftypemethod BigDecimal {public int} hashCode () + +@end deftypemethod +@deftypemethod BigDecimal {public BigDecimal} max (java.math.BigDecimal@w{ }@var{val}) + +@end deftypemethod +@deftypemethod BigDecimal {public BigDecimal} min (java.math.BigDecimal@w{ }@var{val}) + +@end deftypemethod +@deftypemethod BigDecimal {public BigDecimal} movePointLeft (int@w{ }@var{n}) + +@end deftypemethod +@deftypemethod BigDecimal {public BigDecimal} movePointRight (int@w{ }@var{n}) + +@end deftypemethod +@deftypemethod BigDecimal {public int} signum () + +@end deftypemethod +@deftypemethod BigDecimal {public int} scale () + +@end deftypemethod +@deftypemethod BigDecimal {public BigDecimal} abs () + +@end deftypemethod +@deftypemethod BigDecimal {public BigDecimal} negate () + +@end deftypemethod +@deftypemethod BigDecimal {public String} toString () + +@end deftypemethod +@deftypemethod BigDecimal {public BigInteger} toBigInteger () + +@end deftypemethod +@deftypemethod BigDecimal {public int} intValue () + +@end deftypemethod +@deftypemethod BigDecimal {public long} longValue () + +@end deftypemethod +@deftypemethod BigDecimal {public float} floatValue () + +@end deftypemethod +@deftypemethod BigDecimal {public double} doubleValue () + +@end deftypemethod +@deftypemethod BigInteger {public static BigInteger} valueOf (long@w{ }@var{val}) + +@end deftypemethod +@deftypemethod BigInteger {public int} signum () + +@end deftypemethod +@deftypemethod BigInteger {public int} compareTo (java.lang.Object@w{ }@var{obj}) + +@end deftypemethod +@deftypemethod BigInteger {public int} compareTo (java.math.BigInteger@w{ }@var{val}) + +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} min (java.math.BigInteger@w{ }@var{val}) + +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} max (java.math.BigInteger@w{ }@var{val}) + +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} add (java.math.BigInteger@w{ }@var{val}) + +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} subtract (java.math.BigInteger@w{ }@var{val}) + +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} multiply (java.math.BigInteger@w{ }@var{y}) + +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} divide (java.math.BigInteger@w{ }@var{val}) + +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} remainder (java.math.BigInteger@w{ }@var{val}) + +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} divideAndRemainder (java.math.BigInteger@w{ }@var{val}) + +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} mod (java.math.BigInteger@w{ }@var{m}) + +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} pow (int@w{ }@var{exponent}) +Calculate the integral power of a BigInteger. +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} modInverse (java.math.BigInteger@w{ }@var{y}) + +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} modPow (java.math.BigInteger@w{ }@var{exponent}, java.math.BigInteger@w{ }@var{m}) + +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} gcd (java.math.BigInteger@w{ }@var{y}) + +@end deftypemethod +@deftypemethod BigInteger {public boolean} isProbablePrime (int@w{ }@var{certainty}) + +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} shiftLeft (int@w{ }@var{n}) + +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} shiftRight (int@w{ }@var{n}) + +@end deftypemethod +@deftypemethod BigInteger {public String} toString () + +@end deftypemethod +@deftypemethod BigInteger {public String} toString (int@w{ }@var{radix}) + +@end deftypemethod +@deftypemethod BigInteger {public int} intValue () + +@end deftypemethod +@deftypemethod BigInteger {public long} longValue () + +@end deftypemethod +@deftypemethod BigInteger {public int} hashCode () + +@end deftypemethod +@deftypemethod BigInteger {public boolean} equals (java.lang.Object@w{ }@var{obj}) + +@end deftypemethod +@deftypemethod BigInteger {public double} doubleValue () + +@end deftypemethod +@deftypemethod BigInteger {public float} floatValue () + +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} abs () + +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} negate () + +@end deftypemethod +@deftypemethod BigInteger {public int} bitLength () +Calculates ceiling(log2(this < 0 ? -this : this+1)) + See Common Lisp: the Language, 2nd ed, p. 361. +@end deftypemethod +@deftypemethod BigInteger {public byte} toByteArray () + +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} and (java.math.BigInteger@w{ }@var{y}) +Return the logical (bit-wise) "and" of two BigIntegers. +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} or (java.math.BigInteger@w{ }@var{y}) +Return the logical (bit-wise) "(inclusive) or" of two BigIntegers. +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} xor (java.math.BigInteger@w{ }@var{y}) +Return the logical (bit-wise) "exclusive or" of two BigIntegers. +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} not () +Return the logical (bit-wise) negation of a BigInteger. +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} andNot (java.math.BigInteger@w{ }@var{val}) + +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} clearBit (int@w{ }@var{n}) + +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} setBit (int@w{ }@var{n}) + +@end deftypemethod +@deftypemethod BigInteger {public boolean} testBit (int@w{ }@var{n}) + +@end deftypemethod +@deftypemethod BigInteger {public BigInteger} flipBit (int@w{ }@var{n}) + +@end deftypemethod +@deftypemethod BigInteger {public int} getLowestSetBit () + +@end deftypemethod +@deftypemethod BigInteger {public int} bitCount () +Count one bits in a BigInteger. + If argument is negative, count zero bits instead. +@end deftypemethod |