* Obtains a table_array for a given key, if possible. */
| 1416 | * Obtains a table_array for a given key, if possible. |
| 1417 | */ |
| 1418 | std::shared_ptr<table_array> get_table_array(const std::string& key) const |
| 1419 | { |
| 1420 | if (!contains(key)) |
| 1421 | return nullptr; |
| 1422 | return get(key)->as_table_array(); |
| 1423 | } |
| 1424 | |
| 1425 | /** |
| 1426 | * Obtains a table_array for a given key, if possible. Will resolve |
no test coverage detected