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);