| 255 | /// Return an iterator to the end of the chunked array |
| 256 | template <typename Type, typename ArrayType = typename TypeTraits<Type>::ArrayType> |
| 257 | ChunkedArrayIterator<ArrayType> End(const ChunkedArray& chunked_array) { |
| 258 | return ChunkedArrayIterator<ArrayType>(chunked_array, chunked_array.length()); |
| 259 | } |
| 260 | |
| 261 | template <typename ArrayType> |
| 262 | struct ChunkedArrayRange { |
no test coverage detected