Returns true if value represents a real number. This is equivalent to, but not necessarily implemented as, !(Float.isInfinite(value) || Float.isNaN(value)). @since 10.0
(float value)
| 100 | |
| 101 | |
| 102 | public static boolean isFinite(float value) { |
| 103 | return NEGATIVE_INFINITY < value & value < POSITIVE_INFINITY; |
| 104 | } |
| 105 | |
| 106 | /** |
| 107 | * Returns {@code true} if {@code target} is present as an element anywhere in {@code array}. Note |
no outgoing calls
no test coverage detected