-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | GHC preprocessor to enable variable interpolation in strings -- -- This preprocessor enables variable interpolation in strings. See the -- README.md file for details. @package interpol @version 0.2.0 -- | Support module for the interpol preprocessor. module Text.Interpol -- | Append a showable value to a String in a smart way. In -- particular, do not show a String, as this -- encloses it in "quotes". So, depending on the type of the second -- parameter, ^-^ is equivalent to one of the following -- --
-- x ^-^ y = x ++ y -- x ^-^ y = x ++ show y --(^-^) :: (Typeable a, Show a) => String -> a -> String