| 4524 | */ |
| 4525 | template<typename KeyT> |
| 4526 | iterator find(KeyT&& key) |
| 4527 | { |
| 4528 | auto result = end(); |
| 4529 | |
| 4530 | if (is_object()) |
| 4531 | { |
| 4532 | result.m_it.object_iterator = m_value.object->find(std::forward<KeyT>(key)); |
| 4533 | } |
| 4534 | |
| 4535 | return result; |
| 4536 | } |
| 4537 | |
| 4538 | /*! |
| 4539 | @brief find an element in a JSON object |