ListLiteral

data class ListLiteral(val children: List<Yaml>) : Yaml.Collection(source)

Constructors

Link copied to clipboard
constructor(vararg child: Yaml)
constructor(children: List<Yaml>)

Properties

Link copied to clipboard

Functions

Link copied to clipboard
open override fun toYaml(): Yaml

Converts this object into a Yaml object.

Link copied to clipboard
open override fun toYamlString(indentation: Int): CharSequence