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
|
//===----------------------------------------------------------------------===//
//
// 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 const iterator_t<Base>& inner-iterator::base() const& noexcept;
//
// constexpr iterator_t<Base> inner-iterator::base() &&
// requires forward_range<View>;
#include <ranges>
#include <concepts>
#include <utility>
#include "../types.h"
static_assert( noexcept(std::declval<InnerIterForward&>().base()));
static_assert( noexcept(std::declval<InnerIterForward const &>().base()));
static_assert( noexcept(std::declval<InnerIterForward const &&>().base()));
static_assert( noexcept(std::declval<InnerIterInput&>().base()));
static_assert( noexcept(std::declval<InnerIterInput const &>().base()));
static_assert( noexcept(std::declval<InnerIterInput const &&>().base()));
constexpr bool test() {
// `base` works with a forward view (two different overloads based on ref-qualification of the `inner-iterator`).
{
using BaseIter = std::ranges::iterator_t<CopyableView>;
CopyableView input("abc def");
std::ranges::lazy_split_view<CopyableView, ForwardView> v(input, " ");
auto i = (*v.begin()).begin();
const auto ci = i;
// Note: some macOS platforms seem to have trouble deducing the type when using `std::same_as` -- use the equivalent
// `ASSERT_SAME_TYPE` instead.
{
decltype(auto) b = i.base();
ASSERT_SAME_TYPE(decltype(b), const BaseIter&);
assert(b == input.begin());
}
{
decltype(auto) b = ci.base();
ASSERT_SAME_TYPE(decltype(b), const BaseIter&);
assert(b == input.begin());
}
{
decltype(auto) b = std::move(i).base();
ASSERT_SAME_TYPE(decltype(b), BaseIter);
assert(b == input.begin());
}
{
decltype(auto) b = std::move(ci).base();
ASSERT_SAME_TYPE(decltype(b), const BaseIter&);
assert(b == input.begin());
}
}
// `base` works with an input view (no overloads).
{
using BaseIter = std::ranges::iterator_t<InputView>;
InputView input("abc def");
std::ranges::lazy_split_view<InputView, ForwardTinyView> v(input, ' ');
auto i = (*v.begin()).begin();
const auto ci = i;
{
decltype(auto) b = i.base();
ASSERT_SAME_TYPE(decltype(b), const BaseIter&);
}
{
decltype(auto) b = ci.base();
ASSERT_SAME_TYPE(decltype(b), const BaseIter&);
}
{
decltype(auto) b = std::move(i).base();
ASSERT_SAME_TYPE(decltype(b), const BaseIter&);
}
{
decltype(auto) b = std::move(ci).base();
ASSERT_SAME_TYPE(decltype(b), const BaseIter&);
}
}
return true;
}
int main(int, char**) {
test();
static_assert(test());
return 0;
}
|