ifclass F1 static L mapLines(S text, F1 f) { ret mapLines(f, text); } static L mapLines(F1 f, S text) { ret mapLines(f1ToIF1(f), text); } endif static L mapLines(S text, IF1 f) { ret mapLines(f, text); } static L lambdaMapLike mapLines(IF1 f, S text) { ret map(f, lines(text)); }