]> Dogcows Code - chaz/yoink/blob - src/stlplus/strings/string_list.tpp
testing new non-autotools build system
[chaz/yoink] / src / stlplus / strings / string_list.tpp
1 ////////////////////////////////////////////////////////////////////////////////
2
3 // Author: Andy Rushton
4 // Copyright: (c) Southampton University 1999-2004
5 // (c) Andy Rushton 2004-2009
6 // License: BSD License, see ../docs/license.html
7
8 // template implementations
9
10 ////////////////////////////////////////////////////////////////////////////////
11 #include "string_sequence.hpp"
12
13 namespace stlplus
14 {
15
16 template<typename T, typename S>
17 std::string list_to_string(const std::list<T>& values,
18 S to_string_fn,
19 const std::string& separator)
20 {
21 return sequence_to_string(values.begin(), values.end(), to_string_fn, separator);
22 }
23
24 } // end namespace stlplus
This page took 0.031344 seconds and 4 git commands to generate.