package ocsigenserver

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

Install

dune-project
 Dependency

Authors

Maintainers

Sources

7.0.0.tar.gz
md5=ecf37dc2e2ad43f38dfcca8f87ca04a9
sha512=96dffc87f11b82b810d95d6e0cad69ce12a6763425e6e59f211dd71492d777a0cd1aeca722c0c9fd9ec8bb55cad7ae0ba1c781a8129a18de86f0f3accb278118

doc/ocsigen_lib_base/Ocsigen_lib_base/Clist/index.html

Module Ocsigen_lib_base.ClistSource

Circular lists

Sourcetype 'a t
Sourcetype 'a node
Sourceval make : 'a -> 'a node
Sourceval create : unit -> 'a t
Sourceval insert : 'a t -> 'a node -> unit
Sourceval remove : 'a node -> unit
Sourceval value : 'a node -> 'a
Sourceval in_list : 'a node -> bool
Sourceval is_empty : 'a t -> bool
Sourceval iter : ('a -> unit) -> 'a t -> unit

Infinite iteration on circular lists

Sourceval fold_left : ('a -> 'b -> 'a) -> 'a -> 'b t -> 'a

Infinite fold on circular lists (use with care!)