implement `std::ranges::basic_istream_view` and `std::views::istream`. Although the view itself is constexpr, the constructor argument is a base class std::istream where its ctor/dtor are not constexpr. So no tests are performed in constexpr Differential Revision: https://reviews.llvm.org/D133317
58 lines
1.7 KiB
C++
58 lines
1.7 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// UNSUPPORTED: no-localization
|
|
// UNSUPPORTED: c++03, c++11, c++14, c++17
|
|
|
|
// constexpr explicit basic_istream_view(basic_istream<CharT, Traits>& stream);
|
|
|
|
#include <cassert>
|
|
#include <ranges>
|
|
#include <sstream>
|
|
|
|
#include "test_macros.h"
|
|
#include "utils.h"
|
|
|
|
// test that the constructor is explicit
|
|
static_assert(std::constructible_from<std::ranges::istream_view<int>, std::istream&>);
|
|
static_assert(!std::convertible_to<std::istream&, std::ranges::istream_view<int>>);
|
|
|
|
#ifndef TEST_HAS_NO_WIDE_CHARACTERS
|
|
static_assert(std::constructible_from<std::ranges::wistream_view<int>, std::wistream&>);
|
|
static_assert(!std::convertible_to<std::wistream&, std::ranges::wistream_view<int>>);
|
|
#endif
|
|
|
|
template <class CharT>
|
|
void test() {
|
|
// test constructor init the stream pointer to the passed one
|
|
{
|
|
auto iss = make_string_stream<CharT>("123");
|
|
std::ranges::basic_istream_view<int, CharT> isv{iss};
|
|
auto it = isv.begin();
|
|
assert(*it == 123);
|
|
}
|
|
|
|
// LWG 3568. basic_istream_view needs to initialize value_
|
|
{
|
|
auto iss = make_string_stream<CharT>("123");
|
|
std::ranges::basic_istream_view<int, CharT> isv{iss};
|
|
using Iter = std::ranges::iterator_t<decltype(isv)>;
|
|
Iter iter{isv};
|
|
assert(*iter == 0);
|
|
}
|
|
}
|
|
|
|
int main(int, char**) {
|
|
test<char>();
|
|
#ifndef TEST_HAS_NO_WIDE_CHARACTERS
|
|
test<wchar_t>();
|
|
#endif
|
|
|
|
return 0;
|
|
}
|