package ocsigenserver

  1. Overview
  2. Docs
A full-featured and extensible Web server

Install

Dune Dependency

Authors

Maintainers

Sources

5.1.0.tar.gz
md5=72c9e8479d7e4473e0d26ef10e620870
sha512=ed466e88a61c17d8b4e4cc392efc7b703ef1f4396bf41015fc85063bfe1644ace9b5361d804fb17da4957830c3584ad610f717eb1a90ccec002d3d87f79f41c4

doc/ocsigenserver.polytables/Polytables/index.html

Module PolytablesSource

Polymorphic tables (using Map)

  • author Vincent Balat
  • author Jérôme Vouillon

Warning: this module is not thread safe!

Sourcetype 'a key

The type of key for a piece of data of type 'a

Sourcetype t

The type of tables

Sourceval create : unit -> t

creates a new table

Sourceval make_key : unit -> 'a key

create a new key for each data you want to save

Sourceval set : table:t -> key:'a key -> value:'a -> unit

set t k v associates v to k in t

Sourceval get : table:t -> key:'a key -> 'a

get t k returns the current binding of k in t or raises Not_found

Sourceval remove : table:t -> key:'a key -> unit

remove t k remove the current binding of k in t if it exists

Sourceval clear : table:t -> unit

clear t remove all data from t

OCaml

Innovation. Community. Security.