absl::chunked_queue::push_back

Appends the given element value to the end of the container.

Synopses

Declared in <absl/container/chunked_queue.h>

Appends the given element value to the end of the container.

void
push_back(T const& val);
» more...

Appends the given element value to the end of the container.

void
push_back(T&& val);
» more...

Parameters

NameDescription
valThe value to append.