package lru_cache

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Simple Least Recently Used cache implementation.

module type Key = sig ... end

Representation and comparison of keys, and a witness value required to initialize cache instances.

module type S = sig ... end
module type Monad = sig ... end
module Make_with_monad (M : Monad) (K : Key) : S with type key = K.t and type 'a monad = 'a M.t
module Make (K : Key) : S with type key = K.t and type 'a monad = 'a
OCaml

Innovation. Community. Security.