Converts the specified float value to a binary representation conforming to the IEEE 754 floating-point single precision bit layout. All Not-a-Number (NaN) values are converted to a single NaN representation (0x7ff8000000000000L). @param value the float value to convert.
(float value)
| 174 | * @see #intBitsToFloat(int) |
| 175 | */ |
| 176 | public static native int floatToIntBits(float value); |
| 177 | |
| 178 | /** |
| 179 | * Converts the specified float value to a binary representation conforming |
no outgoing calls
no test coverage detected