Portability | non-portable |
---|---|
Stability | experimental |
Maintainer | Edward Kmett <ekmett@gmail.com> |
Safe Haskell | None |
Documentation
sliced :: Int -> Int -> IndexedTraversal' Int (Seq a) aSource
Traverse all the elements numbered from i
to j
of a Seq
>>>
fromList [a,b,c,d,e] & sliced 1 3 %~ f
fromList [a,f b,f c,d,e]
slicedTo :: Int -> IndexedTraversal' Int (Seq a) aSource
Traverse the first n
elements of a Seq
>>>
fromList [a,b,c,d,e] ^.. slicedTo 2
[a,b]
>>>
fromList [a,b,c,d,e] & slicedTo 2 %~ f
fromList [f a,f b,c,d,e]
>>>
fromList [a,b,c,d,e] & slicedTo 10 .~ x
fromList [x,x,x,x,x]
slicedFrom :: Int -> IndexedTraversal' Int (Seq a) aSource
Traverse all but the first n
elements of a Seq
>>>
fromList [a,b,c,d,e] ^.. slicedFrom 2
[c,d,e]
>>>
fromList [a,b,c,d,e] & slicedFrom 2 %~ f
fromList [a,b,f c,f d,f e]
>>>
fromList [a,b,c,d,e] & slicedFrom 10 .~ x
fromList [a,b,c,d,e]