TomlKey constructor

TomlKey(
  1. Iterable<TomlSimpleKey> parts
)

Creates a new dotted key with the given parts.

Implementation

TomlKey(Iterable<TomlSimpleKey> parts) : parts = List.unmodifiable(parts);