package binsec

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

Module Make_from_logger.BuilderSource

Sourcemodule Any (P : DETAILED_CLI_DECL) : GENERIC with type t = P.t

A very generic functor that lets you handle cases that are not provided otherwise. Use it only as last resort.

Sourcemodule Any_opt (P : sig ... end) : GENERIC_OPT with type t = P.t
Sourcemodule Boolean (_ : sig ... end) : BOOLEAN

An option that defaults to false.

Sourcemodule No (_ : CLI_DECL) : BOOLEAN

An options that defaults to true. The provided command-line switch automatically add a no- prefix to your option name.

Sourcemodule Integer (_ : sig ... end) : INTEGER
Sourcemodule Float (_ : sig ... end) : FLOAT
Sourcemodule String (_ : sig ... end) : STRING
Sourcemodule String_choice (_ : sig ... end) : STRING
Sourcemodule Variant_choice (P : sig ... end) : GENERIC with type t = P.t
Sourcemodule Variant_choice_assoc (P : sig ... end) : GENERIC with type t = P.t

Like Variant_choice but with automatically generated to_string and of_string function from assoc_map.

Sourcemodule Variant_list (P : sig ... end) : GENERIC with type t = P.t list