Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for standardPeek (0.07 seconds)

  1. android/guava-tests/test/com/google/common/collect/ForwardingQueueTest.java

          return standardToString();
        }
    
        @Override
        public boolean offer(T o) {
          return standardOffer(o);
        }
    
        @Override
        public @Nullable T peek() {
          return standardPeek();
        }
    
        @Override
        public @Nullable T poll() {
          return standardPoll();
        }
      }
    
      @AndroidIncompatible // test-suite builders
      public static Test suite() {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue May 13 18:46:00 GMT 2025
    - 4.3K bytes
    - Click Count (0)
Back to Top