fclabels-2.0.0.2: First class accessor labels implemented as lenses.

Safe HaskellSafe-Inferred

Data.Label.Point

Contents

Description

The Point data type which generalizes the different lenses and forms the basis for vertical composition using the Applicative type class.

Synopsis

The point data type that generalizes lens.

data Point cat g i f o Source

Abstract Point datatype. The getter and modifier operations work in some category. The type of the value pointed to might change, thereby changing the type of the outer structure.

Constructors

Point (cat f o) (cat (cat o i, f) g) 

Instances

Arrow arr => Functor (Point arr f i f) 
Arrow arr => Applicative (Point arr f i f) 
Alternative (Point Partial f view f) 

get :: Point cat g i f o -> cat f oSource

Get the getter category from a Point.

modify :: Point cat g i f o -> cat (cat o i, f) gSource

Get the modifier category from a Point.

set :: Arrow arr => Point arr g i f o -> arr (i, f) gSource

Get the setter category from a Point.

identity :: ArrowApply arr => Point arr f f o oSource

Identity Point. Cannot change the type.

compose :: ArrowApply cat => Point cat t i b o -> Point cat g t f b -> Point cat g i f oSource

Point composition.

Working with isomorphisms.

data Iso cat i o Source

An isomorphism is like a Category that works in two directions.

Constructors

Iso 

Fields

fw :: cat i o
 
bw :: cat o i
 

Instances

Category cat => Category (Iso cat)

Isomorphisms are categories.

inv :: Iso cat i o -> Iso cat o iSource

Flip an isomorphism.

Specialized lens contexts.

type Total = (->)Source

Context that represents computations that always produce an output.

type Partial = Kleisli MaybeSource

Context that represents computations that might silently fail.

type Failing e = Kleisli (Either e)Source

Context that represents computations that might fail with some error.

Arrow type class for failing with some error.

class Arrow a => ArrowFail e a whereSource

The ArrowFail class is similar to ArrowZero, but additionally embeds some error value in the computation instead of throwing it away.

Methods

failArrow :: a e cSource

Instances