lens-core-0.1.0.3: Lenses, Folds and Traversals

Copyright(C) 2012-16 Edward Kmett
LicenseBSD-style (see the file LICENSE)
MaintainerEdward Kmett <ekmett@gmail.com>
Stabilityprovisional
Portabilitynon-portable
Safe HaskellTrustworthy
LanguageHaskell2010

Data.Vector.Lens

Contents

Description

This module provides lenses and traversals for working with generic vectors.

Synopsis

Documentation

toVectorOf :: Getting (Endo [a]) s a -> s -> Vector a Source #

Similar to toListOf, but returning a Vector.

>>> toVectorOf both (8,15) == Vector.fromList [8,15]
True

Isomorphisms

vector :: Iso [a] [b] (Vector a) (Vector b) Source #

Convert a list to a Vector (or back)

>>> [1,2,3] ^. vector == Vector.fromList [1,2,3]
True
>>> [1,2,3] ^. vector . from vector
[1,2,3]
>>> Vector.fromList [0,8,15] ^. from vector . vector == Vector.fromList [0,8,15]
True

forced :: Iso (Vector a) (Vector b) (Vector a) (Vector b) Source #

Convert a Vector to a version that doesn't retain any extra memory.

Lenses

sliced Source #

Arguments

:: Int

i starting index

-> Int

n length

-> Lens' (Vector a) (Vector a) 

sliced i n provides a ReifiedLens that edits the n elements starting at index i from a ReifiedLens.

This is only a valid ReifiedLens if you do not change the length of the resulting Vector.

Attempting to return a longer or shorter vector will result in violations of the ReifiedLens laws.

>>> Vector.fromList [1..10] ^. sliced 2 5 == Vector.fromList [3,4,5,6,7]
True
>>> (Vector.fromList [1..10] & sliced 2 5 . mapped .~ 0) == Vector.fromList [1,2,0,0,0,0,0,8,9,10]
True