Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for bit_index (0.21 sec)

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

        AtomicInteger stringsCloseCount = new AtomicInteger();
        Stream<String> strings = source.onClose(stringsCloseCount::incrementAndGet);
        Stream<String> withIndex = Streams.mapWithIndex(strings, (str, i) -> str + ":" + i);
    
        withIndex.close();
    
        assertThat(stringsCloseCount.get()).isEqualTo(1);
      }
    
      public void testMapWithIndex_intStream() {
        SpliteratorTester.of(
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 20K bytes
    - Viewed (0)
Back to top