TomlArray constructor

TomlArray(
  1. Iterable<TomlValue> items
)

Creates a new array value.

Implementation

TomlArray(Iterable<TomlValue> items) : items = List.unmodifiable(items);