delta.ml
oxbow.core
oxbow.ctl
oxbow.ipc
oxbow.layout
oxbow.ops
oxbow.river
oxbow.runtime
oxbow.state
oxbow.wire
1 2 3 4 5 6 7 8 9 type 'a t = | Abs of 'a [@name "abs"] | Rel of 'a [@name "rel"] [@@deriving yojson] let resolve ~add ~current = function | Abs a -> a | Rel r -> add current r ;;
1 2 3 4 5 6 7 8 9
type 'a t = | Abs of 'a [@name "abs"] | Rel of 'a [@name "rel"] [@@deriving yojson] let resolve ~add ~current = function | Abs a -> a | Rel r -> add current r ;;