Method code for $list.omap()

[Turn on line numbering]
arg list, object, method, @args;
var obj;

// calls object.method(obj, @args) for each obj in list
return map obj in (list) to (object.(method)(obj, @args));

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

the Cold Dark