* @brief Get array const begin iterator * @return ValueIterator */
| 852 | * @return ValueIterator |
| 853 | */ |
| 854 | ConstValueIterator CBegin() const noexcept { |
| 855 | sonic_assert(this->IsArray()); |
| 856 | return downCast()->cbeginImpl(); |
| 857 | } |
| 858 | |
| 859 | /** |
| 860 | * @brief Get array end iterator |
nothing calls this directly
no test coverage detected