child method

TomlKey child(
  1. TomlSimpleKey child
)

Creates a new key that identifies the given child in the table identified by this key.

Implementation

TomlKey child(TomlSimpleKey child) => TomlKey(parts.followedBy([child]));