class CharRange

Defined at line 708 of file ../../third_party/abseil-cpp/src/absl/strings/cord.h

Cord::CharRange

`CharRange` is a helper class for iterating over the characters of a

producing an iterator which can be used within a range-based for loop.

Construction of a `CharRange` will return an iterator pointing to the first

character of the Cord. Generally, do not construct a `CharRange` directly;

instead, prefer to use the `Cord::Chars()` method shown below.

Implementation note: `CharRange` is simply a convenience wrapper over

`Cord::char_begin()` and `Cord::char_end()`.

Public Methods

void CharRange (const Cord * _Nonnull cord)

Defined at line 720 of file ../../third_party/abseil-cpp/src/absl/strings/cord.h

CharIterator begin ()

Defined at line 1683 of file ../../third_party/abseil-cpp/src/absl/strings/cord.h

CharIterator end ()

Defined at line 1687 of file ../../third_party/abseil-cpp/src/absl/strings/cord.h