Interface memorizeMultiCore_Signature
- memorizeMultiCore_Signature<V, ARGS extends any[]>(
fn: (...args: ARGS) => V,
weak_ref?: false,
): { fn: (...args: ARGS) => V; memory: typeof StrongTree } Parameters
- fn: (...args: ARGS) => V
Optional
weak_ref: false
Returns { fn: (...args: ARGS) => V; memory: typeof StrongTree }
- memorizeMultiCore_Signature<V, ARGS extends any[]>(
fn: (...args: ARGS) => V,
weak_ref: true,
): { fn: (...args: ARGS) => V; memory: typeof HybridTree } Parameters
- fn: (...args: ARGS) => V
- weak_ref: true
Returns { fn: (...args: ARGS) => V; memory: typeof HybridTree }