Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for removeFirstMatching (0.18 seconds)

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

        }
    
        @Override
        public @Nullable E pollFirst() {
          return Iterables.removeFirstMatching(unfiltered(), predicate);
        }
    
        @Override
        public @Nullable E pollLast() {
          return Iterables.removeFirstMatching(unfiltered().descendingSet(), predicate);
        }
    
        @Override
        public NavigableSet<E> descendingSet() {
    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

        }
    
        @Override
        public @Nullable E pollFirst() {
          return Iterables.removeFirstMatching(unfiltered(), predicate);
        }
    
        @Override
        public @Nullable E pollLast() {
          return Iterables.removeFirstMatching(unfiltered().descendingSet(), predicate);
        }
    
        @Override
        public NavigableSet<E> descendingSet() {
    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