package kappa-library

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

Source file buffers.ml

1
2
3
4
5
6
7
8
module type Buffers = sig
  type 'a t

  val create : int -> 'a -> 'a t
  val add : 'a -> 'a t -> 'a t
  val iter : ('a -> unit) -> 'a t -> unit
  val clean : 'a t -> 'a t
end
OCaml

Innovation. Community. Security.