Method code for $list.lmap()

[Turn on line numbering]
arg list, method, @args;
var x, s;

// call methods for each thing in list on sender()
s = sender();
return map x in (list) to (s.(method)(x, @args));

["// Created 26-Mar-1995 as a part of ColdCore, see: @help Credit"]

the Cold Dark