MCPcopy Create free account
hub / github.com/antlr/codebuff / isFinite

Method isFinite

output/java_guava/1.4.17/Floats.java:102–104  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 15

mappingMethod · 0.45
andMethod · 0.45
withSlopeMethod · 0.45
verticalMethod · 0.45
horizontalMethod · 0.45
roundIntermediateMethod · 0.45
isPowerOfTwoMethod · 0.45
log2Method · 0.45
isMathematicalIntegerMethod · 0.45
checkFiniteMethod · 0.45
addMethod · 0.45
meanOfMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected