Lines Matching refs:forward
13 #include <utility> // forward
36 return 1 + concat_length(std::forward<Args>(rest)...);
43 return ::strlen(cstr) + concat_length(std::forward<Args>(rest)...);
49 return str.size() + concat_length(std::forward<Args>(rest)...);
102 out.append(std::forward<Arg>(arg));
103 concat_into(out, std::forward<Args>(rest)...);
111 out += std::forward<Arg>(arg);
112 concat_into(out, std::forward<Args>(rest)...);
122 concat_into(out, std::forward<Args>(rest)...);
133 concat_into(out, std::forward<Args>(rest)...);
140 str.reserve(concat_length(std::forward<Args>(args)...));
141 concat_into(str, std::forward<Args>(args)...);