module Hptmap_sig:sig
..end
Hptmap
moduletype
cache_type =
| |
NoCache |
(* |
The results of the function will not be cached.
| *) |
| |
PersistentCache of |
(* |
The results of the function will be cached, and the function that uses
the cache is a permanent closure (at the toplevel of an OCaml module).
| *) |
| |
TemporaryCache of |
(* |
The results of the function will be cached, but the function itself
is a local function which is garbage-collectable.
| *) |
module type S =sig
..end