package containers

  1. Overview
  2. Docs

Drop-In replacement to Stdlib

This module is meant to be opened if one doesn't want to use both, say, List and CCList. Instead, List is now an alias to

struct
  include List
  include CCList
end
  • since 0.4

Changed Opt to Option to better reflect that this module is about the 'a option type, with module Option = CCOpt.

  • since 0.5
module Array : sig ... end
module Bool = CCBool
module Error = CCError
module Fun = CCFun
module Int = CCInt
module List : sig ... end
module Option = CCOpt
module Pair = CCPair
module String : sig ... end
module Vector = CCVector