[#absl-c_iota] = xref:absl.adoc[absl]::c_iota :relfileprefix: ../ :mrdocs: Container‐based version of the <numeric> `std::iota()` function to compute successive values of `value`, as if incremented with `++value` after each element is written, and write them to the container. == Synopsis Declared in `<absl/algorithm/container.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename Sequence, typename T> constexpr void c_iota( Sequence& sequence, T const& value); ---- == Parameters [cols="1,4"] |=== | Name| Description | *sequence* | The container to fill. | *value* | The starting value written to the first element. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#