Maple für Professional
Maple für Akademiker
Maple für Studenten
Maple Personal Edition
Maple Player
Maple Player für iPad
MapleSim für Professional
MapleSim für Akademiker
Maple T.A. - Testen & beurteilen
Maple T.A. MAA Placement Test Suite
Möbius - Online-Courseware
Machine Design / Industrial Automation
Luft- und Raumfahrt
Fahrzeugtechnik
Robotics
Energiebranche
System Simulation and Analysis
Model development for HIL
Anlagenmodelle für den Regelungsentwurf
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematikausbildung
Technik
Allgemein- und berufsbildende Schulen
Testen und beurteilen
Studierende
Finanzmodelle
Betriebsforschung
Hochleistungsrechnen
Physik
Live-Webinare
Aufgezeichnete Webinare
Geplante Veranstaltungen
MaplePrimes
Maplesoft-Blog
Maplesoft-Mitgliedschaft
Maple Ambassador Program
MapleCloud
Technische Whitepapers
E-Mail Newsletters
Maple-Bücher
Math Matters
Anwendungs-Center
MapleSim Modell-Galerie
Anwenderberichte
Exploring Engineering Fundamentals
Lehrkonzepte mit Maple
Maplesoft Welcome-Center
Resource-Center für Lehrer
Help-Center für Studierende
Cache[RemoveTemporary] - remove a temporary entry from the cache table
Calling Sequence
RemoveTemporary( cache, key )
Parameters
cache
-
cache table or procedure: the object the entry is removed from
key
list: the key to remove
Description
The RemoveTemporary command removes the temporary entry for which key is the key. The cache table can be given directly as cache, or cache can refer to a procedure that has, or can have, a cache remember table. If such a procedure is given and it has a cache remember table, the temporary entry is removed from that table. If the procedure does not have a table no action is taken.
To handle an expression sequence as a key, key must be given in a list. The actual key used for the entry is op(key).
To add a temporary entry to a cache table, use AddTemporary.
For more information on cache tables, see Cache Package.
Examples
p := proc(x,y) option cache; x+y; end proc;
See Also
Cache Package, Cache[AddPermanent], Cache[AddTemporary], Cache[PermanentEntries], Cache[PermanentIndices], Cache[RemovePermanent]
Download Help Document