package current

  1. Overview
  2. Docs
Pipeline language for keeping things up-to-date

Install

Dune Dependency

Authors

Maintainers

Sources

current-v0.5.tbz
sha256=f8c884318a46a568d965c7e8bac00dfe2339efac04ca6f0cbabef916d8b917ca
sha512=e0633239a7d02cdde6264db96c39ed7e3d1adf3a7f09bb25ad002d388f203b561e8c808daee90539bc0ee15c547d2ab4bef1789dcc9c22ed00b151bad0083f64

doc/src/current.term/node.ml.html

Source file node.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
module Make (Metadata : sig type t end) = struct
  type 'a t = {
    id : Id.t;
    bind : bind_context;
    ty : metadata_ty;
    v : 'a Dyn.t Current_incr.t;
  }
  and generic = Term : 'a t -> generic
  and bind_context = generic option
  and metadata_ty =
    | Constant of string option
    | Map_input of { source : generic; info : (string, [`Blocked | `Empty_list]) result }
    | Opt_input of { source : generic }
    | State of { source : generic; hidden : bool }
    | Catch of { source : generic; hidden : bool }
    | Map of generic
    | Bind_in of generic * string
    | Bind_out of generic Current_incr.t
    | Primitive of {x : generic; info : string; meta : Metadata.t option Current_incr.t }
    | Pair of generic * generic
    | Gate_on of { ctrl : generic; value : generic }
    | List_map of { items : generic; output : generic Current_incr.t }
    | Option_map of { item : generic; output : generic Current_incr.t }
    | Collapse of { key : string; value : string; input : generic; output : generic }
end
OCaml

Innovation. Community. Security.