lens-2.0: Lenses, Folds and Traversals
Data.Text.Lens
Description
Synopsis
packed :: Simple Iso String TextSource
Pack (or unpack) Text.
Text
pack x = x^.packed unpack x = x^.from packed
text :: SimpleIndexedTraversal Int Text CharSource
Traverse the individual characters in a either strict or lazy Text.
anyOf text (=='c') :: Text -> Bool