//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // template // basic_istream& // operator>>(basic_istream& is, // basic_string& str); #include #include #include #include "min_allocator.h" int main(int, char**) { { std::istringstream in("a bc defghij"); std::string s("initial text"); in >> s; assert(in.good()); assert(s == "a"); assert(in.peek() == ' '); in >> s; assert(in.good()); assert(s == "bc"); assert(in.peek() == ' '); in.width(3); in >> s; assert(in.good()); assert(s == "def"); assert(in.peek() == 'g'); in >> s; assert(in.eof()); assert(s == "ghij"); in >> s; assert(in.fail()); } { std::wistringstream in(L"a bc defghij"); std::wstring s(L"initial text"); in >> s; assert(in.good()); assert(s == L"a"); assert(in.peek() == L' '); in >> s; assert(in.good()); assert(s == L"bc"); assert(in.peek() == L' '); in.width(3); in >> s; assert(in.good()); assert(s == L"def"); assert(in.peek() == L'g'); in >> s; assert(in.eof()); assert(s == L"ghij"); in >> s; assert(in.fail()); } #if TEST_STD_VER >= 11 { typedef std::basic_string, min_allocator> S; std::istringstream in("a bc defghij"); S s("initial text"); in >> s; assert(in.good()); assert(s == "a"); assert(in.peek() == ' '); in >> s; assert(in.good()); assert(s == "bc"); assert(in.peek() == ' '); in.width(3); in >> s; assert(in.good()); assert(s == "def"); assert(in.peek() == 'g'); in >> s; assert(in.eof()); assert(s == "ghij"); in >> s; assert(in.fail()); } { typedef std::basic_string, min_allocator> S; std::wistringstream in(L"a bc defghij"); S s(L"initial text"); in >> s; assert(in.good()); assert(s == L"a"); assert(in.peek() == L' '); in >> s; assert(in.good()); assert(s == L"bc"); assert(in.peek() == L' '); in.width(3); in >> s; assert(in.good()); assert(s == L"def"); assert(in.peek() == L'g'); in >> s; assert(in.eof()); assert(s == L"ghij"); in >> s; assert(in.fail()); } #endif return 0; }