Stability | Ultra-Violence |
---|---|
Portability | I'm too young to die |
Safe Haskell | Safe |
Language | Haskell98 |
Network.NineP.File.Instances
Contents
Description
Instances for dealing with the usual data.
- class Convertible a b
- class ReadRef sr m a | sr -> a
- class WriteRef sr m a | sr -> a
Documentation
class Convertible a b #
A typeclass that represents something that can be converted.
A Convertible a b
instance represents an a
that can be converted to a b
.
Minimal complete definition
Orphan instances
Convertible Bool ByteString # | |
Convertible () ByteString # | |
(Show a, Num a) => Convertible a ByteString # | |
Convertible ByteString Bool # | |
Convertible ByteString () # | |
(Read a, Num a, Typeable * a) => Convertible ByteString a # | |
Convertible ByteString ByteString # | |
Monad m => WriteRef () m ByteString # | |
ReadRef () m ByteString # | |
MonadIO m => WriteRef (Chan a) m a # | |
MonadIO m => ReadRef (Chan a) m a # | |