Given the code fragment:
UnaryOperator<Integer> uo1 = s -> s*2; line n1
List<Double> loanValues = Arrays.asList(1000.0, 2000.0);
loanValues.stream()
.filter(lv -> lv >= 1500)
.map(lv -> uo1.apply(lv))
.forEach(s -> System.out.print(s + " "));
What is the result?
asdfjhfgjuaDCV
4 months, 3 weeks agosteefaand
5 months, 3 weeks agoInnovation
4 years, 6 months agoadnano1234
4 years, 6 months ago