class

YamlList

const class YamlList : YamlObj

A YamlObj whose content always has the type YamlObj[]. For example, each item on the list below is itself a list:

 - - a
   - b
   - c
 - [a, b, c]

constructors make

Creates a YamlList with the list val as content, found at location loc, with tag as its tag

methods each

Iterate the list items

get

Get item from the list

val

Content value as a list

each Void each(|YamlObj| f)

Iterate the list items

get @Operator
YamlObj get(Int index)

Get item from the list

make new make(YamlObj[] val, Str tag := "!", FileLoc loc := FileLoc.unknown)

Creates a YamlList with the list val as content, found at location loc, with tag as its tag.

val virtual YamlObj[] val()

Content value as a list

Haxall 4.0.6 ∙ 21-Jul-2026 09:48 EDT