// "Collapse loop with stream 'sum()'" "true-preview" import java.util.List; public class Main { interface Person { int getAge(); } public long test(List collection) { long i = collection.stream().mapToLong(Person::getAge).sum(); return i; } }