Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for standardPeek (0.08 sec)

  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() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 4.3K bytes
    - Viewed (0)
Back to top