20 #ifndef PALUDIS_GUARD_PALUDIS_JOIN_HH 21 #define PALUDIS_GUARD_PALUDIS_JOIN_HH 1 44 template <
typename I_,
typename T_>
45 T_
join(I_ i, I_ end,
const T_ & joiner)
65 template <
typename I_,
typename T_,
typename F_>
66 T_
join(I_ i, I_ end,
const T_ & joiner,
const F_ & f)
86 template <
typename I_>
87 std::string
join(I_ begin,
const I_ end,
const char *
const t)
89 return join(begin, end, std::string(t));
98 template <
typename I_,
typename F_>
99 std::string
join(I_ begin,
const I_ end,
const char *
const t,
const F_ & f)
101 return join(begin, end, std::string(t), f);
Definition: about_metadata-fwd.hh:23
T_ join(I_ i, I_ end, const T_ &joiner)
Definition: join.hh:45
std::string stringify(const T_ &item)
Definition: stringify.hh:166