Copyright | (c) 2013-2015 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <[email protected]> |
Stability | provisional |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Language | Haskell2010 |
Network.AWS.Data.ByteString
Contents
Description
- data ByteString :: *
- type LazyByteString = ByteString
- class ToByteString a where
- toBS :: a -> ByteString
- showBS :: ToByteString a => a -> String
- stripBS :: ByteString -> ByteString
ByteString
data ByteString :: *
A space-efficient representation of a Word8
vector, supporting many
efficient operations.
A ByteString
contains 8-bit bytes, or by using the operations from
Data.ByteString.Char8 it can be interpreted as containing 8-bit
characters.
Instances
Eq ByteString | |
Data ByteString | |
Ord ByteString | |
Read ByteString | |
Show ByteString | |
IsString ByteString | |
Chunk ByteString | |
Monoid ByteString | |
FoldCase ByteString | Note that |
ByteArray ByteString | |
ByteArrayAccess ByteString | |
NFData ByteString | |
Hashable ByteString | |
Semigroup ByteString | |
Ixed ByteString | |
ToText ByteString | |
FromText ByteString | |
ToByteString ByteString | |
ToQuery ByteString | |
ToXML ByteString | |
FromXML ByteString | |
ToBody ByteString | |
ToHeader ByteString | |
ToPath ByteString | |
ToLog ByteString | |
Typeable * ByteString | |
Strict ByteString ByteString | |
(~) * a ByteString => IsString (Parser a) | |
ToLog [Header] | |
type State ByteString = Buffer | |
type ChunkElem ByteString = Word8 | |
type Index ByteString = Int | |
type IxValue ByteString = Word8 |
type LazyByteString = ByteString Source
class ToByteString a where Source
Minimal complete definition
Nothing
Methods
toBS :: a -> ByteString Source
Instances
showBS :: ToByteString a => a -> String Source
stripBS :: ByteString -> ByteString Source