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

Method get_table_array

Rapfi/external/cpptoml/include/cpptoml.h:1418–1423  ·  view source on GitHub ↗

* Obtains a table_array for a given key, if possible. */

Source from the content-addressed store, hash-verified

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

Callers 1

readEvaluatorMethod · 0.80

Calls 2

containsFunction · 0.85
as_table_arrayMethod · 0.80

Tested by

no test coverage detected