// "Inline 'map()' body into the next 'forEach()' call" "true-preview" import java.util.List; public class Main { public static void test(List list) { (list.stream().map(cs -> cs.subSequence(1, 5))).forEach(charSequence -> System.out.println(charSequence.length())); } }