Module

Data.Lens.Lens.Tuple

#_1

_1 :: forall a b c. Lens (Tuple a c) (Tuple b c) a b

Lens for the first component of a Tuple.

#_2

_2 :: forall a b c. Lens (Tuple c a) (Tuple c b) a b

Lens for the second component of a Tuple.

Re-exports from Data.Profunctor.Strong

#first

first :: forall p a b c. Strong p => p a b -> p (Tuple a c) (Tuple b c)

#second

second :: forall p a b c. Strong p => p b c -> p (Tuple a b) (Tuple a c)

Modules