package index

  1. Overview
  2. Docs

Signatures and implementations of caches. Make requires a cache in order to provide instance sharing.

module type S = sig ... end
module Noop : S

Cache implementation that always misses.

module Unbounded : S

Cache implementation that always finds previously-added values, and grows indefinitely.