| 50 | |
| 51 | template <class T> |
| 52 | inline void Print(const T& t) { |
| 53 | for (typename T::const_iterator i = t.begin(); i != t.end(); ++i) { |
| 54 | Cerr << *i << Endl; |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | template <template <typename> class TConsumer, typename TResult, typename I, typename TDelimiter> |
| 59 | void TestDelimiterOnString(TResult& good, I* str, const TDelimiter& delim) { |