IPBase.mesa
Copyright © 1984, 1985, 1986 by Xerox Corporation. All rights reserved.
Doug Wyatt, May 30, 1986 2:36:53 pm PDT
DIRECTORY
IPInterpreter USING [Ref];
IPBase: CEDAR DEFINITIONS ~ BEGIN
Ref: TYPE ~ IPInterpreter.Ref;
Vector operators (2.4.3)
ApplyGET: PROC[Ref];
ApplyMAKEVECLU: PROC[Ref];
ApplyMAKEVEC: PROC[Ref];
ApplySHAPE: PROC[Ref];
ApplyGETPROP: PROC[Ref];
ApplyGETP: PROC[Ref];
ApplyMERGEPROP: PROC[Ref];
Frame, pool, and environment operators (2.4.4)
ApplyFGET: PROC[Ref];
ApplyFSET: PROC[Ref];
Operator operators (2.4.5)
ApplyMAKESIMPLECO: PROC[Ref];
ApplyDO: PROC[Ref];
ApplyDOSAVE: PROC[Ref];
ApplyDOSAVEALL: PROC[Ref];
ApplyDOSAVESIMPLEBODY: PROC[Ref];
ApplyFINDOPERATOR: PROC[Ref];
Stack operators (2.4.6)
ApplyPOP: PROC[Ref];
ApplyCOPY: PROC[Ref];
ApplyDUP: PROC[Ref];
ApplyROLL: PROC[Ref];
ApplyEXCH: PROC[Ref];
ApplyMARK: PROC[Ref];
ApplyUNMARK: PROC[Ref];
ApplyUNMARK0: PROC[Ref];
ApplyCOUNT: PROC[Ref];
ApplyNOP: PROC[Ref];
ApplyERROR: PROC[Ref];
Control operators (2.4.7)
ApplyIF: PROC[Ref];
ApplyIFELSE: PROC[Ref];
ApplyIFCOPY: PROC[Ref];
Test operators (2.4.8)
ApplyEQ: PROC[Ref];
ApplyGT: PROC[Ref];
ApplyGE: PROC[Ref];
ApplyAND: PROC[Ref];
ApplyOR: PROC[Ref];
ApplyNOT: PROC[Ref];
ApplyTYPE: PROC[Ref];
Arithmetic operators (2.4.9)
ApplyADD: PROC[Ref];
ApplySUB: PROC[Ref];
ApplyNEG: PROC[Ref];
ApplyABS: PROC[Ref];
ApplyFLOOR: PROC[Ref];
ApplyCEILING: PROC[Ref];
ApplyTRUNC: PROC[Ref];
ApplyROUND: PROC[Ref];
ApplyMUL: PROC[Ref];
ApplyDIV: PROC[Ref];
ApplyMOD: PROC[Ref];
ApplyREM: PROC[Ref];
END.