MCPcopy Create free account
hub / github.com/dhbloo/rapfi / get_table_array_qualified

Method get_table_array_qualified

Rapfi/external/cpptoml/include/cpptoml.h:1429–1435  ·  view source on GitHub ↗

* Obtains a table_array for a given key, if possible. Will resolve * "qualified keys". */

Source from the content-addressed store, hash-verified

1427 * "qualified keys".
1428 */
1429 std::shared_ptr<table_array>
1430 get_table_array_qualified(const std::string& key) const
1431 {
1432 if (!contains_qualified(key))
1433 return nullptr;
1434 return get_qualified(key)->as_table_array();
1435 }
1436
1437 /**
1438 * Helper function that attempts to get a value corresponding

Callers

nothing calls this directly

Calls 1

as_table_arrayMethod · 0.80

Tested by

no test coverage detected