class TomlRB::TableArray

Public Class Methods

new(nested_keys) click to toggle source
# File lib/toml-rb/table_array.rb, line 3
def initialize(nested_keys)
  @nested_keys = nested_keys
end

Public Instance Methods

accept_visitor(parser) click to toggle source
# File lib/toml-rb/table_array.rb, line 35
def accept_visitor(parser)
  parser.visit_table_array self
end
full_key() click to toggle source
# File lib/toml-rb/table_array.rb, line 39
def full_key
  @nested_keys.join('.')
end
navigate_keys(hash, symbolize_keys = false) click to toggle source