Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for remainingSetBits (0.1 seconds)

  1. android/guava/src/com/google/common/collect/Sets.java

            final ImmutableList<E> elements = inputSet.keySet().asList();
            int remainingSetBits = mask;
    
            @Override
            public boolean hasNext() {
              return remainingSetBits != 0;
            }
    
            @Override
            public E next() {
              int index = Integer.numberOfTrailingZeros(remainingSetBits);
              if (index == 32) {
                throw new NoSuchElementException();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 81.4K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/Sets.java

            final ImmutableList<E> elements = inputSet.keySet().asList();
            int remainingSetBits = mask;
    
            @Override
            public boolean hasNext() {
              return remainingSetBits != 0;
            }
    
            @Override
            public E next() {
              int index = Integer.numberOfTrailingZeros(remainingSetBits);
              if (index == 32) {
                throw new NoSuchElementException();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 83K bytes
    - Click Count (0)
Back to Top