package lru_cache

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

Module Lru_cacheSource

Simple Least Recently Used cache implementation.

Sourcemodule type Key = sig ... end

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

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