Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for removeFirstMatching (0.09 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 Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 81.6K bytes
    - Click Count (0)
Back to Top