Searched defs:withIndex (Results 1 – 5 of 5) sorted by relevance
240 Stream<String> withIndex = Streams.mapWithIndex(strings, (str, i) -> str + ":" + i); in testMapWithIndex_closeIsPropagated() local265 Stream<String> withIndex = Streams.mapWithIndex(intStream, (str, i) -> str + ":" + i); in testMapWithIndex_intStream_closeIsPropagated() local290 Stream<String> withIndex = Streams.mapWithIndex(longStream, (str, i) -> str + ":" + i); in testMapWithIndex_longStream_closeIsPropagated() local317 Stream<String> withIndex = Streams.mapWithIndex(doubleStream, (str, i) -> str + ":" + i); in testMapWithIndex_doubleStream_closeIsPropagated() local
38 public Builder withIndex(int i) { in withIndex() method in BuilderDeserializationTest2486.MyPOJOWithArrayCreator.Builder80 public Builder withIndex(int i) { in withIndex() method in BuilderDeserializationTest2486.MyPOJOWithPrimitiveCreator.Builder
68 public fun <T> Flow<T>.withIndex(): Flow<IndexedValue<T>> = flow { in <lambda>() method
209 public PropertyMetadata withIndex(Integer index) { in withIndex() method in PropertyMetadata
367 public fun <E> ReceiveChannel<E>.withIndex(context: CoroutineContext = Dispatchers.Unconfined): Rec… in mapIndexedNotNull() method