Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

The search processing time has exceeded the limit. The displayed results may be partial.

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

      }
    
      public void testSkip_skipNoneList() {
        Collection<String> list = newArrayList("a", "b");
        assertEquals(newArrayList("a", "b"), newArrayList(skip(list, 0)));
      }
    
      public void testSkip_removal() {
        Collection<String> set = newHashSet("a", "b");
        Iterator<String> iterator = skip(set, 2).iterator();
        try {
          iterator.next();
        } catch (NoSuchElementException suppressed) {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Oct 28 18:44:53 GMT 2025
    - 45.6K bytes
    - Click Count (0)
Back to Top