base16-lens-0.1.2.0: Optics for the Base16 library
Copyright(c) 2019 Emily Pillmore
LicenseBSD-style
MaintainerEmily Pillmore <emilypi@cohomolo.gy>
StabilityExperimental
Portabilitynon-portable
Safe HaskellNone
LanguageHaskell2010

Data.ByteString.Lazy.Base16.Lens

Description

This module contains Prism's and Iso's for Base16-encoding and decoding lazy ByteString values.

Synopsis

Prisms

_Hex :: Prism' ByteString ByteString Source #

A Prism' into the Base16 encoding of a lazy ByteString value. This function is an alias of _Base16.

>>> _Hex # "Sun"
"53756e"
>>> "53756e" ^? _Hex
Just "Sun"

_Base16 :: Prism' ByteString ByteString Source #

A Prism' into the Base16 encoding of a ByteString value.

>>> _Base16 # "Sun"
"53756e"
>>> "53756e" ^? _Base16
Just "Sun"

Isos

_Base16Lenient :: Iso' ByteString ByteString Source #

A Iso' into the Base16 encoding of a leniently decoded ByteString value.

>>> _Base16Lenient # "Sun"
"53756e"
>>> "53756e" ^. _Base16
"Sun"

Patterns

pattern Hex :: ByteString -> ByteString Source #

Bidirectional pattern synonym for Base16-encoded lazy ByteString values.

pattern Base16 :: ByteString -> ByteString Source #

Bidirectional pattern synonym for Base16-encoded lazy ByteString values.

pattern Base16Lenient :: ByteString -> ByteString Source #

Bidirectional pattern synonym for Base16-encoded ByteString values.