Method code for $list.lmap()

[Turn off line numbering]
  1: arg list, method, @args;
  2: var x, s;
  3: 
  4: // call methods for each thing in list on sender()
  5: s = sender();
  6: return map x in (list) to (s.(method)(x, @args));

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

Tlon