1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
//===----------------------------------------------------------------------===//
//
// 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: c++03, c++11, c++14, c++17
// constexpr sentinel(sentinel<!Const> s)
// requires Const && convertible_to<sentinel_t<V>, sentinel_t<Base>>;
#include <cassert>
#include <ranges>
#include "../types.h"
struct Sent {
int i;
constexpr Sent() = default;
constexpr Sent(int ii) : i(ii) {}
friend constexpr bool operator==(int* iter, const Sent& s) { return s.i > *iter; }
};
struct ConstSent {
int i;
constexpr ConstSent() = default;
constexpr ConstSent(int ii) : i(ii) {}
constexpr ConstSent(const Sent& s) : i(s.i) {}
friend constexpr bool operator==(int* iter, const ConstSent& s) { return s.i > *iter; }
};
struct Range : std::ranges::view_base {
int* begin() const;
Sent end();
ConstSent end() const;
};
struct Pred {
bool operator()(int i) const;
};
struct NonConvertConstSent {
int i;
constexpr NonConvertConstSent() = default;
constexpr NonConvertConstSent(int ii) : i(ii) {}
friend constexpr bool operator==(int* iter, const NonConvertConstSent& s) { return s.i > *iter; }
};
struct NonConvertConstSentRange : std::ranges::view_base {
int* begin() const;
Sent end();
NonConvertConstSent end() const;
};
// Test Constraint
static_assert(std::is_constructible_v<std::ranges::sentinel_t<const std::ranges::take_while_view<Range, Pred>>,
std::ranges::sentinel_t<std::ranges::take_while_view<Range, Pred>>>);
// !Const
static_assert(!std::is_constructible_v<std::ranges::sentinel_t<std::ranges::take_while_view<Range, Pred>>,
std::ranges::sentinel_t<const std::ranges::take_while_view<Range, Pred>>>);
// !convertible_to<sentinel_t<V>, sentinel_t<Base>>
static_assert(!std::is_constructible_v<
std::ranges::sentinel_t<const std::ranges::take_while_view<NonConvertConstSentRange, Pred>>,
std::ranges::sentinel_t<std::ranges::take_while_view<NonConvertConstSentRange, Pred>>>);
constexpr bool test() {
// base is init correctly
{
using R = std::ranges::take_while_view<Range, bool (*)(int)>;
using Sentinel = std::ranges::sentinel_t<R>;
using ConstSentinel = std::ranges::sentinel_t<const R>;
static_assert(!std::same_as<Sentinel, ConstSentinel>);
Sentinel s1(Sent{5}, nullptr);
ConstSentinel s2 = s1;
assert(s2.base().i == 5);
}
// pred is init correctly
{
bool called = false;
auto pred = [&](int) {
called = true;
return false;
};
using R = std::ranges::take_while_view<Range, decltype(pred)>;
using Sentinel = std::ranges::sentinel_t<R>;
using ConstSentinel = std::ranges::sentinel_t<const R>;
static_assert(!std::same_as<Sentinel, ConstSentinel>);
int i = 10;
int* iter = &i;
Sentinel s1(Sent{0}, &pred);
ConstSentinel s2 = s1;
[[maybe_unused]] bool b = iter == s2;
assert(called);
}
// LWG 3708 `take_while_view::sentinel`'s conversion constructor should move
{
struct MoveOnlyConvert {
int i;
constexpr MoveOnlyConvert() = default;
constexpr MoveOnlyConvert(Sent&& s) : i(s.i) { s.i = 0; }
constexpr bool operator==(int* iter) const { return i > *iter; }
};
struct Rng : std::ranges::view_base {
int* begin() const;
Sent end();
MoveOnlyConvert end() const;
};
using R = std::ranges::take_while_view<Rng, Pred>;
using Sentinel = std::ranges::sentinel_t<R>;
using ConstSentinel = std::ranges::sentinel_t<const R>;
static_assert(!std::same_as<Sentinel, ConstSentinel>);
Sentinel s1(Sent{5}, nullptr);
ConstSentinel s2 = s1;
assert(s2.base().i == 5);
}
return true;
}
int main(int, char**) {
test();
static_assert(test());
return 0;
}
|