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[TemporaryIndices] - return a sequence of the temporary indices
Calling Sequence
TemporaryIndices( cache )
Parameters
cache
-
cache table or procedure: the object whose entries are to be returned
Description
The TemporaryIndices command returns the temporary indices of the given cache table. 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 indices from that table are returned. If the procedure does not have a remember table, NULL is returned.
TemporaryIndices returns the indices in same format as indices, that is, a sequence of lists where the contents of each list is the key of a temporary entry from the table.
The TemporaryEntries command can be used to get the values of the temporary entries.
For more information on cache tables, see Cache Package.
Examples
p := proc( x ) option cache; x^2; end proc;
See Also
Cache Package, Cache[AddTemporary], Cache[PermanentEntries], Cache[PermanentIndices], Cache[RemovePermanent], Cache[TemporaryEntries]
Download Help Document