| 485 | return json_value::const_iterator::from_object_iterator(mValue->begin()); |
| 486 | } |
| 487 | json_value::const_iterator end() const FL_NOEXCEPT { |
| 488 | if (!mValue) return json_value::const_iterator::from_iterator(json_object().end()); |
| 489 | return json_value::const_iterator::from_object_iterator(mValue->end()); |
| 490 | } |
| 491 | |
| 492 | // Iterator support for arrays with type conversion |
| 493 | template<typename T> |
no outgoing calls
no test coverage detected