static L mapLike mapLines(O f, S text) { ret map(f, lines(text)); } ifclass F1 static L mapLines(S text, F1 f) { ret mapLines(f, text); } static L mapLines(F1 f, S text) { ret map(f, lines(text)); } endif