diff options
| -rw-r--r-- | hkutil/string.h | 8 |
1 files changed, 8 insertions, 0 deletions
| diff --git a/hkutil/string.h b/hkutil/string.h index a8cafc6..03c5088 100644 --- a/hkutil/string.h +++ b/hkutil/string.h | |||
| @@ -62,6 +62,14 @@ namespace hatkirby { | |||
| 62 | return result.str(); | 62 | return result.str(); |
| 63 | } | 63 | } |
| 64 | 64 | ||
| 65 | template <class Container> | ||
| 66 | std::string implode( | ||
| 67 | const Container& container, | ||
| 68 | std::string delimiter) | ||
| 69 | { | ||
| 70 | return implode(container.begin(), container.end(), delimiter); | ||
| 71 | } | ||
| 72 | |||
| 65 | template <class OutputIterator> | 73 | template <class OutputIterator> |
| 66 | void split( | 74 | void split( |
| 67 | std::string input, | 75 | std::string input, |
