package calculon
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Basic signal
type 'a signal = 'a t
val create : unit -> 'a t
New signal
val on : 'a t -> ('a -> handler_response Lwt.t) -> unit
Register a handler to the signal; the handler returns ContinueListening
if it wants to continue being notified, StopListening
otherwise
propagate a b
propagates all values of a
into b
. Cycles are not detected.
Combinators
Set the handler that is called upon an exception in a Signal. The default handler does nothing. If the handler raises an exception, it is not caught!
Send-only View
Can be used only for sending
module Send_ref : sig ... end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page