[#absl-Cord-chunk_end] = xref:absl.adoc[absl]::xref:absl/Cord.adoc[Cord]::chunk_end :relfileprefix: ../../ :mrdocs: Returns an iterator one increment past the last chunk of the `Cord`. == Synopsis Declared in `<absl/strings/cord.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/Cord/ChunkIterator.adoc[Cord::ChunkIterator] chunk_end() const; ---- == Description Generally, prefer using `Cord::Chunks()` within a range‐based for loop for iterating over the chunks of a Cord. This method may be useful for getting a `ChunkIterator` where range‐based for‐loops may not be available. == Return Value An iterator one past the last chunk of the Cord. [.small]#Created with https://www.mrdocs.com[MrDocs]#