Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for pollLast (0.06 sec)

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

        public E pollFirst() {
          synchronized (mutex) {
            return delegate().pollFirst();
          }
        }
    
        @Override
        @CheckForNull
        public E pollLast() {
          synchronized (mutex) {
            return delegate().pollLast();
          }
        }
    
        @Override
        public NavigableSet<E> subSet(
            E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Synchronized.java

        public E pollFirst() {
          synchronized (mutex) {
            return delegate().pollFirst();
          }
        }
    
        @Override
        @CheckForNull
        public E pollLast() {
          synchronized (mutex) {
            return delegate().pollLast();
          }
        }
    
        @Override
        public NavigableSet<E> subSet(
            E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Sets.java

          return forward.lower(e);
        }
    
        @Override
        @CheckForNull
        public E pollFirst() {
          return forward.pollLast();
        }
    
        @Override
        @CheckForNull
        public E pollLast() {
          return forward.pollFirst();
        }
    
        @Override
        public NavigableSet<E> descendingSet() {
          return forward;
        }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 14:28:19 UTC 2024
    - 78.8K bytes
    - Viewed (0)
Back to top