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

Method parseUnsignedLong

output/java_guava/1.4.17/UnsignedLongs.java:271–274  ·  view source on GitHub ↗

Returns the unsigned long value represented by the given decimal string. @throws NumberFormatException if the string does not contain a valid unsigned long value @throws NullPointerException if string is null (in contrast to Long#parseLong(String))

(String string)

Source from the content-addressed store, hash-verified

269 */
270
271 @CanIgnoreReturnValue
272 public static long parseUnsignedLong(String string) {
273 return parseUnsignedLong(string, 10);
274 }
275
276 /**
277 * Returns the unsigned {@code long} value represented by the given string.

Callers 2

decodeMethod · 0.95
valueOfMethod · 0.95

Calls 4

overflowInParseMethod · 0.95
checkNotNullMethod · 0.45
lengthMethod · 0.45
digitMethod · 0.45

Tested by

no test coverage detected