<> <> <> DIRECTORY IPBasic USING [State]; IPBasePrimitives: CEDAR DEFINITIONS = BEGIN OPEN IPBasic; <<>> <<2.4.3 Vector operators>> ApplyGET: PROC[State]; ApplyMAKEVECLU: PROC[State]; ApplyMAKEVEC: PROC[State]; ApplySHAPE: PROC[State]; ApplyOPENVEC: PROC[State]; ApplyGETPROP: PROC[State]; ApplyGETP: PROC[State]; ApplyMERGEPROP: PROC[State]; <<>> <<2.4.4 Frame, pool, and environment operators>> ApplyFGET: PROC[State]; ApplyFSET: PROC[State]; ApplyFRAME: PROC[State]; ApplyPOOLOP: PROC[State]; ApplyPOOL: PROC[State]; ApplyPGET: PROC[State]; ApplyPSET: PROC[State]; ApplyENV: PROC[State]; <<>> <<2.4.5 Operator operators>> ApplyMAKESIMPLECO: PROC[State]; ApplyMAKECO: PROC[State]; ApplyMAKECOMPILEDIMAGE: PROC[State]; ApplyMAKEPOOL: PROC[State]; ApplyNOPOOL: PROC[State]; ApplyDO: PROC[State]; ApplyDOSAVE: PROC[State]; ApplyDOSAVEALL: PROC[State]; ApplyDOSAVESIMPLEBODY: PROC[State]; ApplyDOBODY: PROC[State]; ApplyDOSAVEBODY: PROC[State]; ApplyDOSAVEALLBODY: PROC[State]; <<>> <<2.4.6 Stack operators>> 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]; <<>> <<2.4.7 Control operators>> ApplyIF: PROC[State]; ApplyIFELSE: PROC[State]; ApplyIFCOPY: PROC[State]; ApplyLOOP: PROC[State]; <<>> <<2.4.8 Test operators>> ApplyEQ: PROC[State]; ApplyEQN: PROC[State]; ApplyGT: PROC[State]; ApplyGE: PROC[State]; ApplyAND: PROC[State]; ApplyOR: PROC[State]; ApplyNOT: PROC[State]; ApplyTYPE: PROC[State]; <<>> <<2.4.8 Arithmetic operators>> ApplyADD: PROC[State]; ApplySUB: PROC[State]; ApplyNEG: PROC[State]; ApplyABS: PROC[State]; ApplyTRUNC: PROC[State]; ApplyROUND: PROC[State]; ApplyFLOOR: PROC[State]; ApplyCEILING: 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.