lens-4.13.2: Lenses, Folds and Traversals

Copyright(C) 2012-16 Edward Kmett
LicenseBSD-style (see the file LICENSE)
MaintainerEdward Kmett <ekmett@gmail.com>
Stabilityprovisional
PortabilityRank2Types
Safe HaskellNone
LanguageHaskell98

Control.Lens.Tuple

Contents

Description

 

Synopsis

Tuples

class Field1 s t a b | s -> a, t -> b, s b -> t, t a -> s where Source

Provides access to 1st field of a tuple.

Minimal complete definition

Nothing

Methods

_1 :: Lens s t a b Source

Access the 1st field of a tuple (and possibly change its type).

>>> (1,2)^._1
1
>>> _1 .~ "hello" $ (1,2)
("hello",2)
>>> (1,2) & _1 .~ "hello"
("hello",2)
>>> _1 putStrLn ("hello","world")
hello
((),"world")

This can also be used on larger tuples as well:

>>> (1,2,3,4,5) & _1 +~ 41
(42,2,3,4,5)
_1 :: Lens (a,b) (a',b) a a'
_1 :: Lens (a,b,c) (a',b,c) a a'
_1 :: Lens (a,b,c,d) (a',b,c,d) a a'
...
_1 :: Lens (a,b,c,d,e,f,g,h,i) (a',b,c,d,e,f,g,h,i) a a'

Instances

Field1 (Identity a) (Identity b) a b Source 

Methods

_1 :: Lens (Identity a) (Identity b) a b Source

Field1 (a, b) (a', b) a a' Source
_1 k ~(a,b) = (\a' -> (a',b)) <$> k a

Methods

_1 :: Lens (a, b) (a', b) a a' Source

Field1 (a, b, c) (a', b, c) a a' Source 

Methods

_1 :: Lens (a, b, c) (a', b, c) a a' Source

Field1 ((:*:) f g p) ((:*:) f' g p) (f p) (f' p) Source 

Methods

_1 :: Lens ((f :*: g) p) ((f' :*: g) p) (f p) (f' p) Source

Field1 (Product f g a) (Product f' g a) (f a) (f' a) Source 

Methods

_1 :: Lens (Product f g a) (Product f' g a) (f a) (f' a) Source

Field1 (a, b, c, d) (a', b, c, d) a a' Source 

Methods

_1 :: Lens (a, b, c, d) (a', b, c, d) a a' Source

Field1 (a, b, c, d, e) (a', b, c, d, e) a a' Source 

Methods

_1 :: Lens (a, b, c, d, e) (a', b, c, d, e) a a' Source

Field1 (a, b, c, d, e, f) (a', b, c, d, e, f) a a' Source 

Methods

_1 :: Lens (a, b, c, d, e, f) (a', b, c, d, e, f) a a' Source

Field1 (a, b, c, d, e, f, g) (a', b, c, d, e, f, g) a a' Source 

Methods

_1 :: Lens (a, b, c, d, e, f, g) (a', b, c, d, e, f, g) a a' Source

Field1 (a, b, c, d, e, f, g, h) (a', b, c, d, e, f, g, h) a a' Source 

Methods

_1 :: Lens (a, b, c, d, e, f, g, h) (a', b, c, d, e, f, g, h) a a' Source

Field1 (a, b, c, d, e, f, g, h, i) (a', b, c, d, e, f, g, h, i) a a' Source 

Methods

_1 :: Lens (a, b, c, d, e, f, g, h, i) (a', b, c, d, e, f, g, h, i) a a' Source

class Field2 s t a b | s -> a, t -> b, s b -> t, t a -> s where Source

Provides access to the 2nd field of a tuple.

Minimal complete definition

Nothing

Methods

_2 :: Lens s t a b Source

Access the 2nd field of a tuple.

>>> _2 .~ "hello" $ (1,(),3,4)
(1,"hello",3,4)
>>> (1,2,3,4) & _2 *~ 3
(1,6,3,4)
>>> _2 print (1,2)
2
(1,())
anyOf _2 :: (s -> Bool) -> (a, s) -> Bool
traverse . _2 :: (Applicative f, Traversable t) => (a -> f b) -> t (s, a) -> f (t (s, b))
foldMapOf (traverse . _2) :: (Traversable t, Monoid m) => (s -> m) -> t (b, s) -> m

Instances

Field2 (a, b) (a, b') b b' Source
_2 k ~(a,b) = (\b' -> (a,b')) <$> k b

Methods

_2 :: Lens (a, b) (a, b') b b' Source

Field2 (a, b, c) (a, b', c) b b' Source 

Methods

_2 :: Lens (a, b, c) (a, b', c) b b' Source

Field2 ((:*:) f g p) ((:*:) f g' p) (g p) (g' p) Source 

Methods

_2 :: Lens ((f :*: g) p) ((f :*: g') p) (g p) (g' p) Source

Field2 (Product f g a) (Product f g' a) (g a) (g' a) Source 

Methods

_2 :: Lens (Product f g a) (Product f g' a) (g a) (g' a) Source

Field2 (a, b, c, d) (a, b', c, d) b b' Source 

Methods

_2 :: Lens (a, b, c, d) (a, b', c, d) b b' Source

Field2 (a, b, c, d, e) (a, b', c, d, e) b b' Source 

Methods

_2 :: Lens (a, b, c, d, e) (a, b', c, d, e) b b' Source

Field2 (a, b, c, d, e, f) (a, b', c, d, e, f) b b' Source 

Methods

_2 :: Lens (a, b, c, d, e, f) (a, b', c, d, e, f) b b' Source

Field2 (a, b, c, d, e, f, g) (a, b', c, d, e, f, g) b b' Source 

Methods

_2 :: Lens (a, b, c, d, e, f, g) (a, b', c, d, e, f, g) b b' Source

Field2 (a, b, c, d, e, f, g, h) (a, b', c, d, e, f, g, h) b b' Source 

Methods

_2 :: Lens (a, b, c, d, e, f, g, h) (a, b', c, d, e, f, g, h) b b' Source

Field2 (a, b, c, d, e, f, g, h, i) (a, b', c, d, e, f, g, h, i) b b' Source 

Methods

_2 :: Lens (a, b, c, d, e, f, g, h, i) (a, b', c, d, e, f, g, h, i) b b' Source

class Field3 s t a b | s -> a, t -> b, s b -> t, t a -> s where Source

Provides access to the 3rd field of a tuple.

Minimal complete definition

Nothing

Methods

_3 :: Lens s t a b Source

Access the 3rd field of a tuple.

Instances

Field3 (a, b, c) (a, b, c') c c' Source 

Methods

_3 :: Lens (a, b, c) (a, b, c') c c' Source

Field3 (a, b, c, d) (a, b, c', d) c c' Source 

Methods

_3 :: Lens (a, b, c, d) (a, b, c', d) c c' Source

Field3 (a, b, c, d, e) (a, b, c', d, e) c c' Source 

Methods

_3 :: Lens (a, b, c, d, e) (a, b, c', d, e) c c' Source

Field3 (a, b, c, d, e, f) (a, b, c', d, e, f) c c' Source 

Methods

_3 :: Lens (a, b, c, d, e, f) (a, b, c', d, e, f) c c' Source

Field3 (a, b, c, d, e, f, g) (a, b, c', d, e, f, g) c c' Source 

Methods

_3 :: Lens (a, b, c, d, e, f, g) (a, b, c', d, e, f, g) c c' Source

Field3 (a, b, c, d, e, f, g, h) (a, b, c', d, e, f, g, h) c c' Source 

Methods

_3 :: Lens (a, b, c, d, e, f, g, h) (a, b, c', d, e, f, g, h) c c' Source

Field3 (a, b, c, d, e, f, g, h, i) (a, b, c', d, e, f, g, h, i) c c' Source 

Methods

_3 :: Lens (a, b, c, d, e, f, g, h, i) (a, b, c', d, e, f, g, h, i) c c' Source

class Field4 s t a b | s -> a, t -> b, s b -> t, t a -> s where Source

Provide access to the 4th field of a tuple.

Minimal complete definition

Nothing

Methods

_4 :: Lens s t a b Source

Access the 4th field of a tuple.

Instances

Field4 (a, b, c, d) (a, b, c, d') d d' Source 

Methods

_4 :: Lens (a, b, c, d) (a, b, c, d') d d' Source

Field4 (a, b, c, d, e) (a, b, c, d', e) d d' Source 

Methods

_4 :: Lens (a, b, c, d, e) (a, b, c, d', e) d d' Source

Field4 (a, b, c, d, e, f) (a, b, c, d', e, f) d d' Source 

Methods

_4 :: Lens (a, b, c, d, e, f) (a, b, c, d', e, f) d d' Source

Field4 (a, b, c, d, e, f, g) (a, b, c, d', e, f, g) d d' Source 

Methods

_4 :: Lens (a, b, c, d, e, f, g) (a, b, c, d', e, f, g) d d' Source

Field4 (a, b, c, d, e, f, g, h) (a, b, c, d', e, f, g, h) d d' Source 

Methods

_4 :: Lens (a, b, c, d, e, f, g, h) (a, b, c, d', e, f, g, h) d d' Source

Field4 (a, b, c, d, e, f, g, h, i) (a, b, c, d', e, f, g, h, i) d d' Source 

Methods

_4 :: Lens (a, b, c, d, e, f, g, h, i) (a, b, c, d', e, f, g, h, i) d d' Source

class Field5 s t a b | s -> a, t -> b, s b -> t, t a -> s where Source

Provides access to the 5th field of a tuple.

Minimal complete definition

Nothing

Methods

_5 :: Lens s t a b Source

Access the 5th field of a tuple.

Instances

Field5 (a, b, c, d, e) (a, b, c, d, e') e e' Source 

Methods

_5 :: Lens (a, b, c, d, e) (a, b, c, d, e') e e' Source

Field5 (a, b, c, d, e, f) (a, b, c, d, e', f) e e' Source 

Methods

_5 :: Lens (a, b, c, d, e, f) (a, b, c, d, e', f) e e' Source

Field5 (a, b, c, d, e, f, g) (a, b, c, d, e', f, g) e e' Source 

Methods

_5 :: Lens (a, b, c, d, e, f, g) (a, b, c, d, e', f, g) e e' Source

Field5 (a, b, c, d, e, f, g, h) (a, b, c, d, e', f, g, h) e e' Source 

Methods

_5 :: Lens (a, b, c, d, e, f, g, h) (a, b, c, d, e', f, g, h) e e' Source

Field5 (a, b, c, d, e, f, g, h, i) (a, b, c, d, e', f, g, h, i) e e' Source 

Methods

_5 :: Lens (a, b, c, d, e, f, g, h, i) (a, b, c, d, e', f, g, h, i) e e' Source

class Field6 s t a b | s -> a, t -> b, s b -> t, t a -> s where Source

Provides access to the 6th element of a tuple.

Minimal complete definition

Nothing

Methods

_6 :: Lens s t a b Source

Access the 6th field of a tuple.

Instances

Field6 (a, b, c, d, e, f) (a, b, c, d, e, f') f f' Source 

Methods

_6 :: Lens (a, b, c, d, e, f) (a, b, c, d, e, f') f f' Source

Field6 (a, b, c, d, e, f, g) (a, b, c, d, e, f', g) f f' Source 

Methods

_6 :: Lens (a, b, c, d, e, f, g) (a, b, c, d, e, f', g) f f' Source

Field6 (a, b, c, d, e, f, g, h) (a, b, c, d, e, f', g, h) f f' Source 

Methods

_6 :: Lens (a, b, c, d, e, f, g, h) (a, b, c, d, e, f', g, h) f f' Source

Field6 (a, b, c, d, e, f, g, h, i) (a, b, c, d, e, f', g, h, i) f f' Source 

Methods

_6 :: Lens (a, b, c, d, e, f, g, h, i) (a, b, c, d, e, f', g, h, i) f f' Source

class Field7 s t a b | s -> a, t -> b, s b -> t, t a -> s where Source

Provide access to the 7th field of a tuple.

Minimal complete definition

Nothing

Methods

_7 :: Lens s t a b Source

Access the 7th field of a tuple.

Instances

Field7 (a, b, c, d, e, f, g) (a, b, c, d, e, f, g') g g' Source 

Methods

_7 :: Lens (a, b, c, d, e, f, g) (a, b, c, d, e, f, g') g g' Source

Field7 (a, b, c, d, e, f, g, h) (a, b, c, d, e, f, g', h) g g' Source 

Methods

_7 :: Lens (a, b, c, d, e, f, g, h) (a, b, c, d, e, f, g', h) g g' Source

Field7 (a, b, c, d, e, f, g, h, i) (a, b, c, d, e, f, g', h, i) g g' Source 

Methods

_7 :: Lens (a, b, c, d, e, f, g, h, i) (a, b, c, d, e, f, g', h, i) g g' Source

class Field8 s t a b | s -> a, t -> b, s b -> t, t a -> s where Source

Provide access to the 8th field of a tuple.

Minimal complete definition

Nothing

Methods

_8 :: Lens s t a b Source

Access the 8th field of a tuple.

Instances

Field8 (a, b, c, d, e, f, g, h) (a, b, c, d, e, f, g, h') h h' Source 

Methods

_8 :: Lens (a, b, c, d, e, f, g, h) (a, b, c, d, e, f, g, h') h h' Source

Field8 (a, b, c, d, e, f, g, h, i) (a, b, c, d, e, f, g, h', i) h h' Source 

Methods

_8 :: Lens (a, b, c, d, e, f, g, h, i) (a, b, c, d, e, f, g, h', i) h h' Source

class Field9 s t a b | s -> a, t -> b, s b -> t, t a -> s where Source

Provides access to the 9th field of a tuple.

Minimal complete definition

Nothing

Methods

_9 :: Lens s t a b Source

Access the 9th field of a tuple.

Instances

Field9 (a, b, c, d, e, f, g, h, i) (a, b, c, d, e, f, g, h, i') i i' Source 

Methods

_9 :: Lens (a, b, c, d, e, f, g, h, i) (a, b, c, d, e, f, g, h, i') i i' Source

Strict variations

_1' :: Field1 s t a b => Lens s t a b Source

Strict version of _1

_2' :: Field2 s t a b => Lens s t a b Source

Strict version of _2

_3' :: Field3 s t a b => Lens s t a b Source

Strict version of _3

_4' :: Field4 s t a b => Lens s t a b Source

Strict version of _4

_5' :: Field5 s t a b => Lens s t a b Source

Strict version of _5

_6' :: Field6 s t a b => Lens s t a b Source

Strict version of _6

_7' :: Field7 s t a b => Lens s t a b Source

Strict version of _7

_8' :: Field8 s t a b => Lens s t a b Source

Strict version of _8

_9' :: Field9 s t a b => Lens s t a b Source

Strict version of _9