readable-0.3.1: Reading from Text and ByteString
Safe HaskellSafe-Inferred
LanguageHaskell98

Data.Readable

Description

The Read type class is very useful for building data types from String representations. But String has high overhead, so sometimes it isn't suitable for applications where space usage and performance are important. This library provides a simpler version of Read's functionality for Text and ByteStrings.

Synopsis

Documentation

class Readable a where #

ByteString and Text reading using MonadPlus to handle parse failure. On error, fromText and fromBS will return mzero. You can use mplus to provide fallback defaults.

Minimal complete definition

fromText

Methods

fromText :: MonadPlus m => Text -> m a #

Reads data from a Text representation.

fromBS :: MonadPlus m => ByteString -> m a #

Reads data from a UTF8 encoded ByteString. The default implementation of this function simply decodes with UTF-8 and then calls the fromText function. If decoding fails, mzero will be returned. You can provide your own implementation if you need different behavior such as not decoding to UTF8.

Instances

Instances details
Readable ByteString # 
Instance details

Defined in Data.Readable

Readable Int16 # 
Instance details

Defined in Data.Readable

Methods

fromText :: MonadPlus m => Text -> m Int16 #

fromBS :: MonadPlus m => ByteString -> m Int16 #

Readable Int32 # 
Instance details

Defined in Data.Readable

Methods

fromText :: MonadPlus m => Text -> m Int32 #

fromBS :: MonadPlus m => ByteString -> m Int32 #

Readable Int64 # 
Instance details

Defined in Data.Readable

Methods

fromText :: MonadPlus m => Text -> m Int64 #

fromBS :: MonadPlus m => ByteString -> m Int64 #

Readable Int8 # 
Instance details

Defined in Data.Readable

Methods

fromText :: MonadPlus m => Text -> m Int8 #

fromBS :: MonadPlus m => ByteString -> m Int8 #

Readable Word16 # 
Instance details

Defined in Data.Readable

Methods

fromText :: MonadPlus m => Text -> m Word16 #

fromBS :: MonadPlus m => ByteString -> m Word16 #

Readable Word32 # 
Instance details

Defined in Data.Readable

Methods

fromText :: MonadPlus m => Text -> m Word32 #

fromBS :: MonadPlus m => ByteString -> m Word32 #

Readable Word64 # 
Instance details

Defined in Data.Readable

Methods

fromText :: MonadPlus m => Text -> m Word64 #

fromBS :: MonadPlus m => ByteString -> m Word64 #

Readable Word8 # 
Instance details

Defined in Data.Readable

Methods

fromText :: MonadPlus m => Text -> m Word8 #

fromBS :: MonadPlus m => ByteString -> m Word8 #

Readable Text # 
Instance details

Defined in Data.Readable

Methods

fromText :: MonadPlus m => Text -> m Text #

fromBS :: MonadPlus m => ByteString -> m Text #

Readable Integer # 
Instance details

Defined in Data.Readable

Readable Bool # 
Instance details

Defined in Data.Readable

Methods

fromText :: MonadPlus m => Text -> m Bool #

fromBS :: MonadPlus m => ByteString -> m Bool #

Readable Double # 
Instance details

Defined in Data.Readable

Methods

fromText :: MonadPlus m => Text -> m Double #

fromBS :: MonadPlus m => ByteString -> m Double #

Readable Float # 
Instance details

Defined in Data.Readable

Methods

fromText :: MonadPlus m => Text -> m Float #

fromBS :: MonadPlus m => ByteString -> m Float #

Readable Int # 
Instance details

Defined in Data.Readable

Methods

fromText :: MonadPlus m => Text -> m Int #

fromBS :: MonadPlus m => ByteString -> m Int #