Skip to content
Andy Gill edited this page Aug 15, 2014 · 1 revision

Welcome to the active wiki!

We have several versions right now, and want to merge into one.

master

newtype Active t a = Active (MaybeApply (Dynamic t) a)
  deriving (Functor, Apply, Applicative)

new-new-active

data Active t a
  = Active (Era t) (Diff t -> a)
  | PureA  a
  deriving (Functor)

active-0.1

newtype Active a = Active (MaybeApply Dynamic a)
  deriving (Functor, Apply, Applicative)
Clone this wiki locally