package binsec

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val enlist : name:string -> f:(unit -> unit) -> unit

enlist ~name ~f enlists the named unit name to be run at startup with function f.

If name has already been reserved, it raises a Failure.

val run : unit -> unit

run () executes all enlisted startup points.

The execution order is unspecified.

val maybe_enable : string -> unit

maybe_enable switch tries to find a switch to enable from the command line.