Aggregate Operations
//The following example prints all members contained in the collection roster
//with the aggregate operation forEach:
roster
.stream()
.forEach(e -> System.out.println(e.getName());
In most cases, you don't simply store objects in a collection and leave them there, you use collections to retrieve items stored in them.