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

Safe HaskellSafe
LanguageHaskell98

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

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 o

Get the getter category from a Point.

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

Get the modifier category from a Point.

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

Get the setter category from a Point.

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

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 o

Point composition.

Working with isomorphisms.

data Iso cat i o infix 8

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

Constructors

Iso infix 8 

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 i

Flip an isomorphism.

Specialized lens contexts.

type Total = (->)

Context that represents computations that always produce an output.

type Partial = Kleisli Maybe

Context that represents computations that might silently fail.

type Failing e = Kleisli (Either e)

Context that represents computations that might fail with some error.

Arrow type class for failing with some error.

class Arrow a => ArrowFail e a where

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 c

Instances