class ChunkRange
Defined at line 548 of file ../../third_party/abseil-cpp/absl/strings/cord.h
----------------------------------------------------------------------------
Cord::ChunkRange
----------------------------------------------------------------------------
`ChunkRange` is a helper class for iterating over the chunks of the `Cord`,
producing an iterator which can be used within a range-based for loop.
Construction of a `ChunkRange` will return an iterator pointing to the
first chunk of the Cord. Generally, do not construct a `ChunkRange`
directly; instead, prefer to use the `Cord::Chunks()` method.
Implementation note: `ChunkRange` is simply a convenience wrapper over
`Cord::chunk_begin()` and `Cord::chunk_end()`.
Public Methods
void ChunkRange (absl::Nonnull<const Cord *> cord)
Defined at line 560 of file ../../third_party/abseil-cpp/absl/strings/cord.h
ChunkIterator begin ()
Defined at line 1565 of file ../../third_party/abseil-cpp/absl/strings/cord.h
ChunkIterator end ()
Defined at line 1569 of file ../../third_party/abseil-cpp/absl/strings/cord.h