From Jason Turner

[stack.mod]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpyh6lloy_/{from.md → to.md} +10 -0
tmp/tmpyh6lloy_/{from.md → to.md} RENAMED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ #### Modifiers <a id="stack.mod">[[stack.mod]]</a>
2
+
3
+ ``` cpp
4
+ template<container-compatible-range<T> R>
5
+ void push_range(R&& rg);
6
+ ```
7
+
8
+ *Effects:* Equivalent to `c.append_range(std::forward<R>(rg))` if that
9
+ is a valid expression, otherwise `ranges::copy(rg, back_inserter(c))`.
10
+