HELP APPDIC                                          Steven Hardy, March 1982

    appdic(<procedure>)

APPDIC takes a procedure as argument and applies that procedure to each word
in the POP-11 dictionary (i.e. each word that POP-11 'knows' about). It is
also the basis for the procedure MAPDIC, which is defined in the library as
follows:

    define mapdic(<procedure>);
        [% appdic(<procedure>) %]
    enddefine;

MAPDIC applies the procedure to all the words in the dictionary, and makes
a list of the results. So

     mapdic(identfn) -> <list>;

will produce a list of all the words in the dictionary (though the words will
not be in any useful order - see HELP *SORT for details of how to sort a
list).

See also HELP
    *APPDATA - for applying a procedure to any kind of data structure
