A lightweight reactive document library.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- val (let$) : 'a Lwd.t -> ('a -> 'b) -> 'b Lwd.t
- (** Alias to {!Lwd.map'} suitable for let-op bindings *)
-
- val (let$*) : 'a Lwd.t -> ('a -> 'b Lwd.t) -> 'b Lwd.t
- (** Alias to {!Lwd.bind} suitable for let-op bindings *)
-
- val (and$) : 'a Lwd.t -> 'b Lwd.t -> ('a * 'b) Lwd.t
- (** Alias to {!Lwd.pair} suitable for let-op bindings *)
-
- val ($=) : 'a Lwd.var -> 'a -> unit
- (** Infix alias to {!Lwd.set} *)
-
- val ($<-) : 'a Lwd_table.row -> 'a -> unit
- (** Infix alias to {!Lwd_table.set} *)
|