Module

Data.Incremental.Monoid

Package
purescript-incremental-functions
Repository
paf31/purescript-incremental-functions

#Left Source

newtype Left a

A change structure for any monoid, with the Dual monoid acting by appending on the left.

Constructors

Instances

#appendLeft Source

appendLeft :: forall a. Monoid a => a -> Change (Left a)

Change by appending a value on the left.

#Right Source

newtype Right a

A change structure for any monoid, acting on itself by appending on the right.

Constructors

Instances

#appendRight Source

appendRight :: forall a. Monoid a => a -> Change (Right a)

Change by appending a value on the right.