• Home
  • Raw
  • Download

Lines Matching refs:charT

208 template <class T, class charT = char, class traits = char_traits<charT>, class Distance = ptrdiff_…
213 typedef charT char_type;
215 typedef basic_istream<charT,traits> istream_type;
228 template <class T, class charT, class traits, class Distance>
229 bool operator==(const istream_iterator<T,charT,traits,Distance>& x,
230 const istream_iterator<T,charT,traits,Distance>& y);
231 template <class T, class charT, class traits, class Distance>
232 bool operator!=(const istream_iterator<T,charT,traits,Distance>& x,
233 const istream_iterator<T,charT,traits,Distance>& y);
235 template <class T, class charT = char, class traits = char_traits<charT> >
240 typedef charT char_type;
242 typedef basic_ostream<charT,traits> ostream_type;
245 ostream_iterator(ostream_type& s, const charT* delimiter);
255 template<class charT, class traits = char_traits<charT> >
257 : public iterator<input_iterator_tag, charT,
259 charT>
262 typedef charT char_type;
265 typedef basic_streambuf<charT,traits> streambuf_type;
266 typedef basic_istream<charT,traits> istream_type;
273 charT operator*() const;
281 template <class charT, class traits>
282 bool operator==(const istreambuf_iterator<charT,traits>& a,
283 const istreambuf_iterator<charT,traits>& b);
284 template <class charT, class traits>
285 bool operator!=(const istreambuf_iterator<charT,traits>& a,
286 const istreambuf_iterator<charT,traits>& b);
288 template <class charT, class traits = char_traits<charT> >
293 typedef charT char_type;
295 typedef basic_streambuf<charT,traits> streambuf_type;
296 typedef basic_ostream<charT,traits> ostream_type;
300 ostreambuf_iterator& operator=(charT c);