
map_array(3)          LPC Library Functions          map_array(3)

NNAAMMEE
       map_array()  - modify an array of elements via application
       of a function

SSYYNNOOPPSSIISS
       mixed *map_array( mixed *arr, string fun, object ob,
                         mixed extra );

DDEESSCCRRIIPPTTIIOONN
       Returns an array holding the items of `arr' mapped through
       `ob->fun()'.   The  function  `fun'  in `ob' is called for
       each element in `arr' with that element  as  parameter.  A
       second  parameter  `extra'  is sent in each call if given.
       Principal function:

              foreach (index) arr[index] = ob->fun(arr[index],extra);

       The value returned by `ob->fun(arr[.index.], extra)' replaces the existing
       element in the array. If `arr' is not an array, then 0 will be returned.

SSEEEE AALLSSOO
       filter_array(3), sort_array(3)

MudOS                       5 Sep 1994                          1

