Home | History | Annotate | Download | only in ostream.joiner.ops

Lines Matching refs:exp

26 namespace exp = std::experimental;
29 void test ( exp::ostream_joiner<Delim, CharT, Traits> &oj ) {
31 exp::ostream_joiner<Delim, CharT, Traits> &ret = *oj;
37 { exp::ostream_joiner<char> oj(std::cout, '8'); test(oj); }
38 { exp::ostream_joiner<std::string> oj(std::cout, std::string("9")); test(oj); }
39 { exp::ostream_joiner<std::wstring> oj(std::cout, std::wstring(L"10")); test(oj); }
40 { exp::ostream_joiner<int> oj(std::cout, 11); test(oj); }
42 { exp::ostream_joiner<char, wchar_t> oj(std::wcout, '8'); test(oj); }
43 { exp::ostream_joiner<std::string, wchar_t> oj(std::wcout, std::string("9")); test(oj); }
44 { exp::ostream_joiner<std::wstring, wchar_t> oj(std::wcout, std::wstring(L"10")); test(oj); }
45 { exp::ostream_joiner<int, wchar_t> oj(std::wcout, 11); test(oj); }