IPBase.mesa
Copyright © 1984, 1985 by Xerox Corporation. All rights reserved.
Doug Wyatt, May 20, 1985 2:20:24 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];
ApplyOPENVEC: PROC[Ref];
ApplyGETPROP: PROC[Ref];
ApplyGETP: PROC[Ref];
ApplyMERGEPROP: PROC[Ref];
Frame, pool, and environment operators (2.4.4)
ApplyFRAME: PROC[Ref];
ApplyFGET: PROC[Ref];
ApplyFSET: PROC[Ref];
ApplyPOOLOP: PROC[Ref];
ApplyPOOL: PROC[Ref];
ApplyPGET: PROC[Ref];
ApplyPSET: PROC[Ref];
ApplyENV: PROC[Ref];
Operator operators (2.4.5)
ApplyMAKEPOOL: PROC[Ref];
ApplyNOPOOL: PROC[Ref];
ApplyMAKECO: PROC[Ref];
ApplyMAKESIMPLECO: PROC[Ref];
ApplyDO: PROC[Ref];
ApplyDOSAVE: PROC[Ref];
ApplyDOSAVEALL: PROC[Ref];
ApplyDOBODY: PROC[Ref];
ApplyDOSAVEBODY: PROC[Ref];
ApplyDOSAVEALLBODY: PROC[Ref];
ApplyDOSAVESIMPLEBODY: PROC[Ref];
ApplyMAKECOMPILEDIMAGE: 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];
ApplyLOOP: PROC[Ref];
Test operators (2.4.8)
ApplyEQ: PROC[Ref];
ApplyEQNAME: 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];
ApplyMAX: PROC[Ref];
ApplyMIN: PROC[Ref];
ApplySQRT: PROC[Ref];
ApplyEXP: PROC[Ref];
ApplyLOG: PROC[Ref];
ApplySIN: PROC[Ref];
ApplyCOS: PROC[Ref];
ApplyATAN: PROC[Ref];
END.