Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
    Page
Library
Module
Module type
Parameter
Class
Class type
Source
ReactiveDataReactiveData is a module for data-aware functional reactive programming (FRP). It adds support to incremental changes in data structures by reasoning on patches instead of absolute values. ReactiveData is based on and inter-operates with React.
You are most likely interested in the sub-module RList, which implements a superset of the signature S.
module type S = sig ... endSignature describing a reactive data structure ('a t).
module RList : sig ... endReactive list data structure
module type DATA = sig ... endSignature describing a raw data container ('a data).