package eliom

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

Module Persistent_cookies.Expiry_datesSource

include Ocsipersist.TABLE with type key = date and type value = string
type key = date
type value = string
val name : string
val find : key -> value Lwt.t
Sourceval add : key -> value -> unit Lwt.t
Sourceval replace_if_exists : key -> value -> unit Lwt.t
Sourceval remove : key -> unit Lwt.t
Sourceval modify_opt : key -> (value option -> value option) -> unit Lwt.t
val length : unit -> int Lwt.t
val iter : ?count:??? -> ?gt:??? -> ?geq:??? -> ?lt:??? -> ?leq:??? -> (key -> value -> unit Lwt.t) -> unit Lwt.t
val fold : ?count:??? -> ?gt:??? -> ?geq:??? -> ?lt:??? -> ?leq:??? -> (key -> value -> 'a -> 'a Lwt.t) -> 'a -> 'a Lwt.t
val iter_block : ?count:??? -> ?gt:??? -> ?geq:??? -> ?lt:??? -> ?leq:??? -> (key -> value -> unit) -> unit Lwt.t
val iter_batch : ?count:??? -> ?gt:??? -> ?geq:??? -> ?lt:??? -> ?leq:??? -> ((key * value) list -> unit Lwt.t) -> unit Lwt.t
module Variable : sig ... end