microlens-ghc-0.4.3.0: microlens + array, bytestring, containers, transformers

Copyright(C) 2013-2016 Edward Kmett, 2015-2016 Artyom
LicenseBSD-style (see the file LICENSE)
Safe HaskellUnsafe
LanguageHaskell2010

Lens.Micro.GHC.Internal

Contents

Description

 

Synopsis

Documentation

class IsByteString t where Source

Methods

packedBytes :: Lens' [Word8] t Source

Treat a list of bytes as a strict or lazy ByteString.

unpackedBytes :: Lens' t [Word8] Source

Treat a strict or lazy ByteString as a list of bytes.

packedChars :: Lens' String t Source

Treat a String as a strict or lazy ByteString. (Note that it will garble characters above 0xFF, same as pack does.)

unpackedChars :: Lens' t String Source

Treat a strict or lazy ByteString as a String. (Just as packedChars, it will garble characters above 0xFF.)

chars :: Traversal' t Char Source

Traverse characters in a strict or lazy ByteString (to traverse bytes instead of characters, use each).

Unpacking bytestrings

Converting bytestrings between strict and lazy

Traversing bytestrings