Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Data.FractalText.From
Documentation
class FromItem a where Source #
Associated Types
type FromItemError a :: Type Source #
Instances
FromItem Item Source # | |
Defined in Data.FractalText.From Associated Types type FromItemError Item Source # | |
FromItem Text Source # | |
Defined in Data.FractalText.From Associated Types type FromItemError Text Source # | |
FromItem Text Source # | |
Defined in Data.FractalText.From Associated Types type FromItemError Text Source # | |
a ~ Text => FromItem (Vector a) Source # | |
Defined in Data.FractalText.From Associated Types type FromItemError (Vector a) Source # | |
a ~ Text => FromItem [a] Source # | |
Defined in Data.FractalText.From Associated Types type FromItemError [a] Source # | |
(FromKey k, FromItem v) => FromItem (Map k v) Source # | |
Defined in Data.FractalText.From Associated Types type FromItemError (Map k v) Source # |
class Ord a => FromKey a where Source #
Associated Types
type FromKeyError a :: Type Source #
Instances
FromKey Text Source # | |
Defined in Data.FractalText.From Associated Types type FromKeyError Text Source # | |
FromKey Text Source # | |
Defined in Data.FractalText.From Associated Types type FromKeyError Text Source # | |
FromKey ShortText Source # | |
Defined in Data.FractalText.From Associated Types type FromKeyError ShortText Source # |
data FromItemError'Common Source #
Constructors
FromItemError'Common'InvalidValue |
Instances
Generic FromItemError'Common Source # | |
Defined in Data.FractalText.From Associated Types type Rep FromItemError'Common :: Type -> Type # Methods from :: FromItemError'Common -> Rep FromItemError'Common x # to :: Rep FromItemError'Common x -> FromItemError'Common # | |
Show FromItemError'Common Source # | |
Defined in Data.FractalText.From Methods showsPrec :: Int -> FromItemError'Common -> ShowS # show :: FromItemError'Common -> String # showList :: [FromItemError'Common] -> ShowS # | |
Eq FromItemError'Common Source # | |
Defined in Data.FractalText.From Methods (==) :: FromItemError'Common -> FromItemError'Common -> Bool # (/=) :: FromItemError'Common -> FromItemError'Common -> Bool # | |
type Rep FromItemError'Common Source # | |
data FromItemError'Map k v Source #
Constructors
FromItemError'Map'InvalidValue | |
FromItemError'Map'KeyError (FromKeyError k) | |
FromItemError'Map'ValueError (FromItemError v) |