bookhound-0.2.2: Simple Parser Combinators
Safe HaskellSafe-Inferred
LanguageHaskell2010

Bookhound.Utils.Text

Documentation

class ToText a where Source #

Methods

toText :: a -> Text Source #

Instances

Instances details
ToText Text Source # 
Instance details

Defined in Bookhound.Utils.Text

Methods

toText :: Text -> Text Source #

ToText Integer Source # 
Instance details

Defined in Bookhound.Utils.Text

Methods

toText :: Integer -> Text Source #

ToText Char Source # 
Instance details

Defined in Bookhound.Utils.Text

Methods

toText :: Char -> Text Source #

ToText Double Source # 
Instance details

Defined in Bookhound.Utils.Text

Methods

toText :: Double -> Text Source #

ToText Float Source # 
Instance details

Defined in Bookhound.Utils.Text

Methods

toText :: Float -> Text Source #

ToText Int Source # 
Instance details

Defined in Bookhound.Utils.Text

Methods

toText :: Int -> Text Source #

ToText a => ToText [a] Source # 
Instance details

Defined in Bookhound.Utils.Text

Methods

toText :: [a] -> Text Source #

(ToText a, Foldable f, Functor f) => ToText (f a) Source # 
Instance details

Defined in Bookhound.Utils.Text

Methods

toText :: f a -> Text Source #