-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Support for serialising Haskell to and from Yaml. -- -- Binds to the libyaml library @package yaml @version 0.0.2 module Text.Yaml encode :: (StrictByteString bs, ToObject o) => o -> bs encodeFile :: (ToObject o) => FilePath -> o -> IO () decode :: (Monad m, StrictByteString bs, FromObject o) => bs -> m o decodeFile :: (Monad m, FromObject o) => FilePath -> IO (m o)