- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for testParseLongWithRadixLimits (0.08 sec)
-
android/guava-tests/test/com/google/common/primitives/UnsignedLongsTest.java
.isEqualTo(0xffffffffffffffffL); assertThat(UnsignedLongs.parseUnsignedLong("1234567890abcdef", 16)) .isEqualTo(0x1234567890abcdefL); } public void testParseLongWithRadixLimits() { BigInteger max = BigInteger.ZERO.setBit(64).subtract(ONE); // loops through all legal radix values. for (int r = Character.MIN_RADIX; r <= Character.MAX_RADIX; r++) { int radix = r;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K bytes - Viewed (0)