| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Data.Winery.Internal
Documentation
data EncodingMulti Source #
encodeMulti :: (EncodingMulti -> EncodingMulti) -> Encoding Source #
encodeItem :: Encoding -> EncodingMulti -> EncodingMulti Source #
type Decoder = (->) ByteString Source #
data DecodeException Source #
Constructors
| InsufficientInput | |
| InvalidTag |
Instances
| Eq DecodeException Source # | |
Defined in Data.Winery.Internal Methods (==) :: DecodeException -> DecodeException -> Bool # (/=) :: DecodeException -> DecodeException -> Bool # | |
| Read DecodeException Source # | |
Defined in Data.Winery.Internal Methods readsPrec :: Int -> ReadS DecodeException # readList :: ReadS [DecodeException] # | |
| Show DecodeException Source # | |
Defined in Data.Winery.Internal Methods showsPrec :: Int -> DecodeException -> ShowS # show :: DecodeException -> String # showList :: [DecodeException] -> ShowS # | |
| Exception DecodeException Source # | |
Defined in Data.Winery.Internal Methods toException :: DecodeException -> SomeException # | |
word16be :: ByteString -> Word16 Source #
word32be :: ByteString -> Word32 Source #
word64be :: ByteString -> Word64 Source #
unsafeIndex :: String -> [a] -> Int -> a Source #
Constructors
| Strategy | |
Fields
| |
type StrategyError = Doc AnsiStyle Source #
newtype TransFusion f g a Source #
Constructors
| TransFusion | |
Fields
| |
Instances
| Functor (TransFusion f g) Source # | |
Defined in Data.Winery.Internal Methods fmap :: (a -> b) -> TransFusion f g a -> TransFusion f g b # (<$) :: a -> TransFusion f g b -> TransFusion f g a # | |
| Applicative (TransFusion f g) Source # | |
Defined in Data.Winery.Internal Methods pure :: a -> TransFusion f g a # (<*>) :: TransFusion f g (a -> b) -> TransFusion f g a -> TransFusion f g b # liftA2 :: (a -> b -> c) -> TransFusion f g a -> TransFusion f g b -> TransFusion f g c # (*>) :: TransFusion f g a -> TransFusion f g b -> TransFusion f g b # (<*) :: TransFusion f g a -> TransFusion f g b -> TransFusion f g a # | |