Function memorizeMultiCore
- memorizeMultiCore<V, ARGS>(fn, weak_ref?): {
fn: ((...args: ARGS) => V);
memory: typeof StrongTree;
} Parameters
- fn: ((...args: ARGS) => V)
Optional
weak_ref: false
Returns {
fn: ((...args: ARGS) => V);
memory: typeof StrongTree;
}
fn: ((...args: ARGS) => V)
- memorizeMultiCore<V, ARGS>(fn, weak_ref): {
fn: ((...args: ARGS) => V);
memory: typeof HybridTree;
} Parameters
- fn: ((...args: ARGS) => V)
- weak_ref: true
Returns {
fn: ((...args: ARGS) => V);
memory: typeof HybridTree;
}
fn: ((...args: ARGS) => V)