Method code for $list.omap()

[Turn off line numbering]
  1: arg list, object, method, @args;
  2: var obj;
  3: 
  4: // calls object.method(obj, @args) for each obj in list
  5: return map obj in (list) to (object.(method)(obj, @args));

// Created 27-Mar-1995 as a part of ColdCore, see: @help Credit

Tlon