- Sort Score
- Result 10 results
- Languages All
Results 1 - 1 of 1 for numberOfTrailingZeros (0.07 sec)
-
android/guava/src/com/google/common/collect/Sets.java
@Override public boolean hasNext() { return remainingSetBits != 0; } @Override public E next() { int index = Integer.numberOfTrailingZeros(remainingSetBits); if (index == 32) { throw new NoSuchElementException(); } remainingSetBits &= ~(1 << index); return elements.get(index); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 81.6K bytes - Viewed (0)