aeson-yaml-1.0.0.0: Output any Aeson value as YAML (pure Haskell library)

Safe HaskellNone
LanguageHaskell2010

Data.Aeson.Yaml

Description

This library exposes functions for encoding any Aeson value as YAML. There is also support for encoding multiple values into YAML "documents".

This library is pure Haskell, and does not depend on C FFI with libyaml. It is also licensed under the BSD3 license.

This module is meant to be imported qualified.

Synopsis

Documentation

encode :: ToJSON a => a -> ByteString Source #

Encode a value as YAML (lazy bytestring).

encodeDocuments :: ToJSON a => [a] -> ByteString Source #

Encode multiple values separated by '---'. To encode values of different types, import Data.Aeson(ToJSON(toJSON)) and do encodeDocuments [toJSON x, toJSON y, toJSON z].