.TH "Stdlib.Callback" 3o 2020-10-30 OCamldoc "OCaml library" .SH NAME Stdlib.Callback \- no description .SH Module Module Stdlib.Callback .SH Documentation .sp Module .BI "Callback" : .B (module Stdlib__callback) .sp .sp .sp .sp .I val register : .B string -> 'a -> unit .sp .ft B Callback\&.register n v .ft R registers the value .ft B v .ft R under the name .ft B n .ft R \&. C code can later retrieve a handle to .ft B v .ft R by calling .ft B caml_named_value(n) .ft R \&. .sp .I val register_exception : .B string -> exn -> unit .sp .ft B Callback\&.register_exception n exn .ft R registers the exception contained in the exception value .ft B exn .ft R under the name .ft B n .ft R \&. C code can later retrieve a handle to the exception by calling .ft B caml_named_value(n) .ft R \&. The exception value thus obtained is suitable for passing as first argument to .ft B raise_constant .ft R or .ft B raise_with_arg .ft R \&. .sp