package oxbow

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Oxbow_core.DeltaSource

Sourcetype 'a t =
  1. | Abs of 'a
  2. | Rel of 'a
Sourceval t_of_yojson : (Yojson.Safe.t -> 'a) -> Yojson.Safe.t -> 'a t
Sourceval yojson_of_t : ('a -> Yojson.Safe.t) -> 'a t -> Yojson.Safe.t
Sourceval resolve : add:('a -> 'a -> 'a) -> current:'a -> 'a t -> 'a

resolve ~add ~current d is the value of d: Abs a is a, and Rel r is add current r.