Files
spring-data-commons/src/test/java/org/springframework/data
Oliver Gierke 5cc4811c52 DATACMNS-635 - Slice and Page can now be mapped using a Converter.
Introduced a map(Converter converter) method on Slice and Page to be able to easily transform the elements and create a new Slice or Page of the transformation result.

On Java 8 this allows code like this:

Page<String> strings = …;
Page<Integer> ints = strings.map(String::length);
2015-01-22 19:01:16 +01:00
..
2015-01-05 18:14:46 +01:00
2015-01-20 16:31:30 +01:00
2015-01-20 17:53:33 +01:00