[#absl-Cord-Advance] = xref:absl.adoc[absl]::xref:absl/Cord.adoc[Cord]::Advance :relfileprefix: ../../ :mrdocs: Advances the `Cord::CharIterator` by `n_bytes`. == Synopsis Declared in `<absl/strings/cord.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static void Advance( xref:absl/Cord/CharIterator.adoc[CharIterator]* it, size_t n_bytes); ---- == Description `n_bytes` must be less than or equal to the number of bytes remaining within the Cord; otherwise, behavior is undefined. It is valid to pass `char_end()` and `0`. == Parameters [cols="1,4"] |=== | Name| Description | *it* | The iterator to advance. | *n_bytes* | The number of bytes to advance. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#