package coq

  1. Overview
  2. Docs
Formal proof management system

Install

Dune Dependency

Authors

Maintainers

Sources

coq-8.15.0.tar.gz
sha256=73466e61f229b23b4daffdd964be72bd7a110963b9d84bd4a86bb05c5dc19ef3

doc/coq-core.lib/Hook/index.html

Module HookSource

This module centralizes the notions of hooks. Hooks are pointers that are to be set at runtime exactly once.

Sourcetype 'a t

The type of hooks containing 'a. Hooks can only be set.

Sourcetype 'a value

The content part of a hook.

Sourceval make : ?default:'a -> unit -> 'a value * 'a t

Create a new hook together with a way to retrieve its runtime value.

Sourceval get : 'a value -> 'a

Access the content of a hook. If it was not set yet, try to recover the default value if there is one.

Sourceval set : 'a t -> 'a -> unit

Register a hook. Assertion failure if already registered.

OCaml

Innovation. Community. Security.