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