Searched refs:content_type (Results 1 – 2 of 2) sorted by relevance
69 template <class content_type> class content_iterator {70 content_type Current;74 using value_type = content_type;79 content_iterator(content_type symb) : Current(std::move(symb)) {} in content_iterator()81 const content_type *operator->() const { return &Current; }83 const content_type &operator*() const { return Current; }
241 void test(const char * content_type) { in test() argument