- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for transformAndConcat (0.15 sec)
-
android/guava-tests/test/com/google/common/collect/FluentIterableTest.java
return ImmutableList.of(value, value); } } public void testTransformAndConcat() { List<Integer> input = asList(1, 2, 3); Iterable<String> result = FluentIterable.from(input).transformAndConcat(new RepeatedStringValueOfFunction()); assertEquals(asList("1", "1", "2", "2", "3", "3"), Lists.newArrayList(result)); } private static final class RepeatedStringValueOfWildcardFunction
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 30.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/FluentIterable.java
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 22 18:35:44 UTC 2025 - 34.7K bytes - Viewed (0)