Correct list of unique methods

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_X@1062008 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2011-01-21 20:24:53 +00:00
parent 61cf9a03bb
commit 82ceb5bd8b
1 changed files with 5 additions and 2 deletions

View File

@ -17,14 +17,17 @@
package org.apache.commons.math.util;
/**
* Faster, more accurate, portable alternative to StrictMath.
* Faster, more accurate, portable alternative to {@link StrictMath}.
* <p>
* Additionally implements the following methods:
* Additionally implements the following methods not found in StrictMath:
* <ul>
* <li>{@link #asinh(double)}</li>
* <li>{@link #acosh(double)}</li>
* <li>{@link #atanh(double)}</li>
* <li>{@link #nextAfter(float,float)}</li>
* </ul>
* The following methods are found in StrictMath since 1.6 only
* <ul>
* <li>{@link #nextAfter(double,double)}</li>
* <li>{@link #nextUp(double)}</li>
* <li>{@link #nextUp(float)}</li>