Module Sharp.Core

module Core: Sharp_core

type time = float 
type 'a t 
Type of signals.
val const : 'a -> 'a t
The simplest signal, always returning the same value. Note that, for convenience and to reflect the intent of your code more accurately, you can also use its aliases: return, pure and lift0.
val time : time t
Return the current time.
val map : ('a -> 'b) -> 'a t -> 'b t
Map a function onto a signal's (current and future) values.
val (<$>) : ('a -> 'b) -> 'a t -> 'b t
Alias for map.
val pure : 'a -> 'a t
Alias for const.
val apply : ('a -> 'b) t -> 'a t -> 'b t
Signals are applicative functors.
val (<*>) : ('a -> 'b) t -> 'a t -> 'b t
Alias for apply.
val lift0 : 'a -> 'a t
The following functions lift a function of values into a function of signals.
val lift : ('a -> 'b) -> 'a t -> 'b t
val lift2 : ('a -> 'b -> 'c) -> 'a t -> 'b t -> 'c t
val lift3 : ('a -> 'b -> 'c -> 'd) ->
'a t -> 'b t -> 'c t -> 'd t
val lift4 : ('a -> 'b -> 'c -> 'd -> 'e) ->
'a t ->
'b t -> 'c t -> 'd t -> 'e t
val lift5 : ('a -> 'b -> 'c -> 'd -> 'e -> 'f) ->
'a t ->
'b t ->
'c t -> 'd t -> 'e t -> 'f t
val map_opt : ('a -> 'b) -> 'a option t -> 'b option t
A kind of map on optional signals.
val (<$?>) : ('a -> 'b) -> 'a option t -> 'b option t
Alias for map_opt.
val apply_opt : ('a -> 'b) option t ->
'a option t -> 'b option t
A kind apply on optional signals.
val (<*?>) : ('a -> 'b) option t ->
'a option t -> 'b option t
Alias for apply_opt.
val sequence : 'a t list -> 'a list t
Combine a list of signals into a signal of list.
val return : 'a -> 'a t
Alias for const.
val join : 'a t t -> 'a t
Flatten a nested signal. When called, the next signal will be determined by the outer signal and the new one determined by the inner one will be discarded.
val bind : 'a t -> ('a -> 'b t) -> 'b t
Monadic bind. It allows to sequentially compose signals together.
val (>>=) : 'a t -> ('a -> 'b t) -> 'b t
Alias for bind.
val (>>) : 'a t -> 'b t -> 'b t
Like >>= but it discards the value of the first signal.
val perform : ?force:bool -> 'a t -> ('a -> unit) -> unit
Perform an action every time the signal changes value.

To be precise, the signal could have the same value as before but something happened upstream. If some signals have been triggered and the signal passed to perform somehow depends on it, through calls to map or apply for instance, the function given to perform will be called.

val perform_state : ?force:bool -> 'a t -> init:'b -> f:('b -> 'a -> 'b) -> unit
Like perform but maintain a state between calls.
val react : 'a option t -> ('a -> unit) -> unit
Run the function when the optional signal takes a value.
val react_with : 'a option t -> 'b t -> ('a -> 'b -> unit) -> unit
Same as react with an additional signal.

This is useful for things like react_with button_cliked data_signal (fun () data -> (* do something *)).

val event : unit -> 'a option t * ('a -> unit)
Create a optional signal with the function to give the signal the given value at the current time.
val connected_event : (('a -> unit) -> unit -> unit) ->
'a option t * ('a -> unit) * (unit -> unit)
Create a signal from a callback and returns the signal, the trigger function and another callback to disconnect the event.

The first callback takes the trigger function and should return the second callback to disconnect the event. To make its use clearer, imagine you want to create a signal which should be triggered automatically when some JS event occurs. The first callback would be a function starting to listen to a JS event, calling the trigger function when the event occurs and returning a callback to destroy the listener when it's called.

val on : 'a option t -> init:'b -> f:('b -> 'a -> 'b) -> 'b t
Return a signal starting with the value init and changing this value based on the previous one and a value of an optional signal when it takes one.
val last : 'a option t -> init:'a -> 'a t
Return the last value taken by an optional signal, init if none.
val toggle : 'b option t -> init:bool -> bool t
Toggle between true and false each time the given optional signal takes a value.
val count : ?init:int -> 'b option t -> int t
Count the number of times the optional signal has had a value.
val upon : ?init:'a -> 'c option t -> 'a t -> 'a t
The new signal will keep the same value until the optional value takes a value.
val fold : 'a t -> init:'b -> f:('b -> 'a -> 'b) -> 'b t
Fold the values taken by a signal.

It is important to understand that signals are only called when something happened. It is therefore not continuous.