static S lines(Iterable lines) { ret fromLines(lines); } static S lines(O[] lines) { ret fromLines(asList(lines)); } static L lines(S s) { ret toLines(s); } // convenience map call static S lines(Iterable l, IF1 f) { ret mapToLines(l, f); }