| 6290 | } |
| 6291 | |
| 6292 | TOML_PURE_INLINE_GETTER |
| 6293 | node* get(size_t index) noexcept |
| 6294 | { |
| 6295 | return index < elems_.size() ? elems_[index].get() : nullptr; |
| 6296 | } |
| 6297 | |
| 6298 | TOML_PURE_INLINE_GETTER |
| 6299 | const node* get(size_t index) const noexcept |
no test coverage detected