open fun isTable(dottedKey: String!): Boolean (source)
Check if a value in the TOML document is a table.
dottedKey - String!: A dotted key (e.g. "server.address").
IllegalArgumentException - If the key cannot be parsed.
Return
Boolean: true if the value can be obtained as a table.
open fun isTable(path: MutableList<String!>!): Boolean (source)
Check if a value in the TOML document is a table.
path - MutableList<String!>!: The key path.
Return
Boolean: true if the value can be obtained as a table.