Module OpamStd
Generic stdlib functions (String, List, Option, Sys submodules...)
Signatures and functors
module type SET = sig ... endSets with extended interface and infix operators
module type MAP = sig ... endMaps with extended interface
module type ABSTRACT = sig ... endA signature for handling abstract keys and collections thereof
module AbstractString : ABSTRACT with type t = stringA basic implementation of ABSTRACT using strings
Generators for set and map modules with printers
module type OrderedType = sig ... endmodule Set : sig ... endmodule Map : sig ... endInteger collections
Utility modules extending the standard library on base types
module Option : sig ... endmodule List : sig ... endmodule String : sig ... endmodule Format : sig ... endmodule Exn : sig ... endManipulation and query of environment variables
module Env : sig ... endSystem query and exit handling
module Sys : sig ... endmodule Win32 : sig ... end
General use infix function combinators
module Op : sig ... endHelper functions to initialise configuration from the environment
module Config : sig ... end