Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for testPaddedPartitionNonRandomAccessInput (0.13 seconds)

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

        Iterator<List<Integer>> iterator = partitions.iterator();
        assertTrue(iterator.next() instanceof RandomAccess);
        assertTrue(iterator.next() instanceof RandomAccess);
      }
    
      public void testPaddedPartitionNonRandomAccessInput() {
        Iterable<Integer> source = new LinkedList<>(asList(1, 2, 3));
        Iterable<List<Integer>> partitions = Iterables.paddedPartition(source, 2);
        Iterator<List<Integer>> iterator = partitions.iterator();
    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