Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// {
import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;
public class Main {
public static void main(String[] args) throws Exception {
// }
List<Integer> integers = Arrays.asList(1, 2, 3, 4, 5);
List<Integer> newIntegers = integers.stream()
.filter(i -> i <= 3)
.map(i -> 2*i)
.collect(Collectors.toList());
System.out.println(newIntegers);
// {
}
}
// }
Press desired key combination and then press ENTER.
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content