]> Dogcows Code - chaz/yoink/blobdiff - src/stlplus/strings/string_sequence.tpp
remove some unused stlplus modules
[chaz/yoink] / src / stlplus / strings / string_sequence.tpp
diff --git a/src/stlplus/strings/string_sequence.tpp b/src/stlplus/strings/string_sequence.tpp
deleted file mode 100644 (file)
index 7c9c827..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-
-//   Author:    Andy Rushton
-//   Copyright: (c) Southampton University 1999-2004
-//              (c) Andy Rushton           2004-2009
-//   License:   BSD License, see ../docs/license.html
-
-////////////////////////////////////////////////////////////////////////////////
-#include "string_pair.hpp"
-
-namespace stlplus
-{
-
-  ////////////////////////////////////////////////////////////////////////////////
-  // any forward iterator sequence
-
-  template <typename I, typename S>
-  std::string sequence_to_string(I begin,
-                                 I end, 
-                                 S to_string,
-                                 const std::string& separator)
-  {
-    std::string result;
-    for (I i = begin; i != end; i++)
-    {
-      if (i != begin) result += separator;
-      result += to_string(*i);
-    }
-    return result;
-  }
-
-  ////////////////////////////////////////////////////////////////////////////////
-  // any sequence where the value is a pair
-
-  template <typename I, typename S1, typename S2>
-  std::string pair_sequence_to_string(I begin,
-                                      I end,
-                                      S1 to_string_fn1,
-                                      S2 to_string_fn2,
-                                      const std::string& pair_separator,
-                                      const std::string& separator)
-  {
-    std::string result;
-    for (I i = begin; i != end; i++)
-    {
-      if (i != begin) result += separator;
-      result += pair_to_string(*i, to_string_fn1, to_string_fn2, pair_separator);
-    }
-    return result;
-  }
-
-  ////////////////////////////////////////////////////////////////////////////////
-
-} // end namespace stlplus
This page took 0.018586 seconds and 4 git commands to generate.