Name: ksC84122 Date: 03/19/99
The javadoc for java.util.Arrays.equals(float[], float[]) says:
-------------- javadoc excerpt -------------------
"Two doubles d1 and d2 are considered equal if:
^
|
new Double(d1).equals(new Double(d2))
^ ^
| |
(Unlike the == operator, this method considers NaN equals to itself, and 0.0d unequal to -0.0d.)".
^ ^
| |
"See Also:
Double#equals(Double)"
^ ^
| |
-------------- end of javadoc excerpt ------------
"Two doubles d1 and d2" should be replaced with "Two floats f1 and f2".
"new Double(d1).equals(new Double(d2))" should be replaced with "new Float(f1).equals(new Float(f2))".
"and 0.0d unequal to -0.0d" should be replaced with "and 0.0f unequal to -0.0f".
"Double#equals(Double)" should be replaced with "Float.equals(Float)"
======================================================================