quantum-random-0.6.4: Retrieve, store and manage real quantum random data.

Safe HaskellNone
LanguageHaskell2010

Quantum.Random.Display

Description

Functionality for display of binary data. Seeing a visual representation of quantum random data lets a user visually verify that it is indeed random.

Usually to be imported via the Quantum.Random module.

Synopsis

Documentation

data DisplayStyle Source #

Represents the supported methods for displaying binary data. All styles show data separated by byte except for Hex.

parseStyle :: String -> Maybe DisplayStyle Source #

Parse a string to one of the supported display styles.

display :: DisplayStyle -> [Word8] -> IO () Source #

Display a given list of bytes with the specified display style.