package guardian

  1. Overview
  2. Docs
Role-based access control for OCaml

Install

dune-project
 Dependency

Authors

Maintainers

Sources

0.4.0.tar.gz
md5=c0526b48e6fe938c209dfd5810082578
sha512=0fb1878c12848c2e5690444035e225cdd7b80f0fa98ee5a1db5e2f41f01fb5db3c8fc4d81b9c95da1859d6c803d0a253458e213dea8fa0924d33f4055df8c01f

doc/guardian.backend/Guardian_backend/MariaDb/Make/DBCache/LruCache/index.html

Module DBCache.LruCacheSource

Sourceval create : ?random:??? -> int -> t
Sourceval is_empty : t -> bool
Sourceval size : t -> int
Sourceval weight : t -> int
Sourceval capacity : t -> int
Sourceval resize : int -> t -> unit
Sourceval trim : t -> unit
Sourceval mem : k -> t -> bool
Sourceval find : k -> t -> v option
Sourceval promote : k -> t -> unit
Sourceval add : k -> v -> t -> unit
Sourceval remove : k -> t -> unit
Sourceval lru : t -> (k * v) option
Sourceval drop_lru : t -> unit
Sourceval fold : (k -> v -> 'a -> 'a) -> 'a -> t -> 'a
Sourceval iter : (k -> v -> unit) -> t -> unit
Sourceval of_list : (k * v) list -> t
Sourceval to_list : t -> (k * v) list
Sourceval pp : ?pp_size:??? -> ?sep:??? -> (Format.formatter -> (k * v) -> unit) -> Format.formatter -> t -> unit
Sourceval pp_dump : (Format.formatter -> k -> unit) -> (Format.formatter -> v -> unit) -> Format.formatter -> t -> unit