package binsec

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

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

module Any_opt (P : sig ... end) : Binsec.Cli.GENERIC_OPT with type t = P.t
module Boolean (P : sig ... end) : Binsec.Cli.BOOLEAN

An option that defaults to false.

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

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

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

module Variant_list (P : sig ... end) : Binsec.Cli.GENERIC with type t = P.t list