Last data update: 2014.03.03

Data Source

R Release (3.2.3)
CranContrib
BioConductor
All

Data Type

Packages
Functions
Images
Data set

Classification

Results 1 - 5 of 5 found.
[1] < 1 > [1]  Sort:

is.memoised (Package: memoise) : Test whether a function is a memoised copy.

Test whether a function is a memoised copy. Memoised copies of functions carry an attribute memoised = TRUE, which is.memoised() tests for.
● Data Source: CranContrib
● Keywords:
● Alias: is.memoised, is.memoized
● 0 images

timeout (Package: memoise) : Return a new number after a given number of seconds

This function will return a number corresponding to the system time and remain stable until a given number of seconds have elapsed, after which it will update to the current time. This makes it useful as a way to timeout and invalidate a memoised cache after a certain period of time.
● Data Source: CranContrib
● Keywords:
● Alias: timeout
● 0 images

has_cache (Package: memoise) : Test whether a memoised function has been cached for particular arguments.

Test whether a memoised function has been cached for particular arguments.
● Data Source: CranContrib
● Keywords:
● Alias: has_cache
● 0 images

memoise (Package: memoise) : Memoise a function.

mf <- memoise(f) creates mf, a memoised copy of f. A memoised copy is basically a lazier version of the same function: it saves the answers of new invocations, and re-uses the answers of old ones. Under the right circumstances, this can provide a very nice speedup indeed.
● Data Source: CranContrib
● Keywords:
● Alias: memoise, memoize
● 0 images

forget (Package: memoise) : Forget past results.

Forget past results. Resets the cache of a memoised function.
● Data Source: CranContrib
● Keywords:
● Alias: forget
● 0 images