deepChild method

TomlKey deepChild(
  1. TomlKey child
)

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

Implementation

TomlKey deepChild(TomlKey child) => TomlKey(parts.followedBy(child.parts));