GGUtility.mesa
Last edited by Bier on August 16, 1985 11:22:39 pm PDT.
Contents: General Purpose routines for use by Gargoyle.
DIRECTORY
Rope,
ViewerClasses;
GGUtility: CEDAR DEFINITIONS =
BEGIN
IsMember: PROC [entity: REF ANY, entityList: LIST OF REF ANY] RETURNS [BOOL];
DeleteEntityFromList: PROC [entity: REF ANY, entityList: LIST OF REF ANY] RETURNS [smallerList: LIST OF REF ANY];
AppendList: PROC [list1, list2: LIST OF REF ANY] RETURNS [result: LIST OF REF ANY];
Non-destructive (copies the first list).
END.