class CharRange

Defined at line 690 of file ../../third_party/abseil-cpp/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 (absl::Nonnull<const Cord *> cord)

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

CharIterator begin ()

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

CharIterator end ()

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