Append the elements of range R to container C.
Declared in <llvm/ADT/STLExtras.h>
template<
typename Container,
typename Range>
void
append_range(
Container& C,
Range&& R);
Equivalent to C.insert(C.end(), R.begin(), R.end()).
| Name | Description |
|---|---|
| C | Container to extend. |
| R | Range whose elements are appended. |