IPBase.mesa
Last edited by:
Doug Wyatt, February 11, 1984 3:32:22 pm PST
DIRECTORY
IP USING [State];
IPBase: CEDAR DEFINITIONS
= BEGIN
Types
State: TYPE = IP.State;
Vector operators (2.4.3)
ApplyGET: PROC[State];
ApplyMAKEVECLU: PROC[State];
ApplyMAKEVEC: PROC[State];
ApplySHAPE: PROC[State];
ApplyOPENVEC: PROC[State];
ApplyGETPROP: PROC[State];
ApplyGETP: PROC[State];
ApplyMERGEPROP: PROC[State];
Frame, pool, and environment operators (2.4.4)
ApplyFRAME: PROC[State];
ApplyFGET: PROC[State];
ApplyFSET: PROC[State];
ApplyPOOLOP: PROC[State];
ApplyPOOL: PROC[State];
ApplyPGET: PROC[State];
ApplyPSET: PROC[State];
ApplyENV: PROC[State];
Operator operators (2.4.5)
ApplyMAKEPOOL: PROC[State];
ApplyNOPOOL: PROC[State];
ApplyMAKECO: PROC[State];
ApplyMAKESIMPLECO: PROC[State];
ApplyDO: PROC[State];
ApplyDOSAVE: PROC[State];
ApplyDOSAVEALL: PROC[State];
ApplyDOBODY: PROC[State];
ApplyDOSAVEBODY: PROC[State];
ApplyDOSAVEALLBODY: PROC[State];
ApplyDOSAVESIMPLEBODY: PROC[State];
ApplyMAKECOMPILEDIMAGE: PROC[State];
Stack operators (2.4.6)
ApplyPOP: PROC[State];
ApplyCOPY: PROC[State];
ApplyDUP: PROC[State];
ApplyROLL: PROC[State];
ApplyEXCH: PROC[State];
ApplyMARK: PROC[State];
ApplyUNMARK: PROC[State];
ApplyUNMARK0: PROC[State];
ApplyCOUNT: PROC[State];
ApplyNOP: PROC[State];
ApplyERROR: PROC[State];
Control operators (2.4.7)
ApplyIF: PROC[State];
ApplyIFELSE: PROC[State];
ApplyIFCOPY: PROC[State];
ApplyLOOP: PROC[State];
Test operators (2.4.8)
ApplyEQ: PROC[State];
ApplyEQNAME: PROC[State];
ApplyGT: PROC[State];
ApplyGE: PROC[State];
ApplyAND: PROC[State];
ApplyOR: PROC[State];
ApplyNOT: PROC[State];
ApplyTYPE: PROC[State];
Arithmetic operators (2.4.9)
ApplyADD: PROC[State];
ApplySUB: PROC[State];
ApplyNEG: PROC[State];
ApplyABS: PROC[State];
ApplyFLOOR: PROC[State];
ApplyCEILING: PROC[State];
ApplyTRUNC: PROC[State];
ApplyROUND: PROC[State];
ApplyMUL: PROC[State];
ApplyDIV: PROC[State];
ApplyMOD: PROC[State];
ApplyREM: PROC[State];
ApplyMAX: PROC[State];
ApplyMIN: PROC[State];
ApplySQRT: PROC[State];
ApplyEXP: PROC[State];
ApplyLOG: PROC[State];
ApplySIN: PROC[State];
ApplyCOS: PROC[State];
ApplyATAN: PROC[State];
END.