Home | History | Annotate | Download | only in ostreambuf.iterator

Lines Matching refs:I1

31     typedef std::ostreambuf_iterator<char> I1;
33 static_assert((std::is_convertible<I1,
36 static_assert((std::is_same<I1::iterator_category, std::output_iterator_tag>::value), "");
37 static_assert((std::is_same<I1::value_type, void>::value), "");
38 static_assert((std::is_same<I1::difference_type, void>::value), "");
39 static_assert((std::is_same<I1::pointer, void>::value), "");
40 static_assert((std::is_same<I1::reference, void>::value), "");
42 static_assert((std::is_same<I1::char_type, char>::value), "");
43 static_assert((std::is_same<I1::traits_type, std::char_traits<char> >::value), "");
44 static_assert((std::is_same<I1::streambuf_type, std::streambuf>::value), "");
45 static_assert((std::is_same<I1::ostream_type, std::ostream>::value), "");