* Converts the TOML element into a table array. */
| 558 | * Converts the TOML element into a table array. |
| 559 | */ |
| 560 | std::shared_ptr<table_array> as_table_array() |
| 561 | { |
| 562 | if (is_table_array()) |
| 563 | return std::static_pointer_cast<table_array>(shared_from_this()); |
| 564 | return nullptr; |
| 565 | } |
| 566 | |
| 567 | /** |
| 568 | * Attempts to coerce the TOML element into a concrete TOML value |
no outgoing calls
no test coverage detected