Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Language.Fortran.Repr.Tmp
Documentation
prettyHexByteString :: (a -> [Word8]) -> a -> Text Source #
Pretty print to default format 00 12 AB FF
: space between each byte, all
caps.
This format I consider most human readable. I prefer caps to draw attention to this being data instead of text (you don't see that many capital letters packed together in prose).
prettyHexByteStringCompact :: (a -> [Word8]) -> a -> Text Source #
Pretty print to "compact" format 0012abff
(often output by hashers).