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
|
// Range v3 library
//
// Copyright Eric Niebler 2014-present
// Copyright Gonzalo Brito Gadeschi 2017
//
// Use, modification and distribution is subject to the
// Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// Project home: https://github.com/ericniebler/range-v3
#include <vector>
#include <range/v3/algorithm/equal.hpp>
#include <range/v3/view/c_str.hpp>
#include <range/v3/view/iota.hpp>
#include <range/v3/core.hpp>
#include "../simple_test.hpp"
int main()
{
{
std::vector<int> vi{1,2,3,4};
CHECK(ranges::index(vi, 0) == 1);
CHECK(ranges::index(vi, 1) == 2);
CHECK(ranges::index(vi, 2) == 3);
CHECK(ranges::index(vi, 3) == 4);
CHECK(ranges::at(vi, 0) == 1);
CHECK(ranges::at(vi, 1) == 2);
CHECK(ranges::at(vi, 2) == 3);
CHECK(ranges::at(vi, 3) == 4);
try
{
ranges::at(vi, 4);
CHECK(false);
}
catch(std::out_of_range const& e)
{
CHECK(ranges::equal(ranges::views::c_str(e.what()),
ranges::views::c_str("ranges::at")));
}
try
{
ranges::at(vi, -1);
CHECK(false);
}
catch(std::out_of_range const& e)
{
CHECK(ranges::equal(ranges::views::c_str(e.what()),
ranges::views::c_str("ranges::at")));
}
auto viv = ranges::make_subrange(vi.begin(), vi.end());
CHECK(viv.at(0) == 1);
CHECK(viv.at(1) == 2);
CHECK(viv.at(2) == 3);
CHECK(viv.at(3) == 4);
try
{
viv.at(4);
CHECK(false);
}
catch(std::out_of_range const& e)
{
CHECK(ranges::equal(ranges::views::c_str(e.what()),
ranges::views::c_str("view_interface::at")));
}
try
{
viv.at(-1);
CHECK(false);
}
catch(std::out_of_range const& e)
{
CHECK(ranges::equal(ranges::views::c_str(e.what()),
ranges::views::c_str("view_interface::at")));
}
const auto cviv = viv;
CHECK(cviv.at(0) == 1);
CHECK(cviv.at(1) == 2);
CHECK(cviv.at(2) == 3);
CHECK(cviv.at(3) == 4);
try
{
cviv.at(4);
CHECK(false);
}
catch(std::out_of_range const& e)
{
CHECK(ranges::equal(ranges::views::c_str(e.what()),
ranges::views::c_str("view_interface::at")));
}
try
{
cviv.at(-1);
CHECK(false);
}
catch(std::out_of_range const& e)
{
CHECK(ranges::equal(ranges::views::c_str(e.what()),
ranges::views::c_str("view_interface::at")));
}
}
{
auto rng = ranges::views::ints(std::int64_t{0}, std::numeric_limits<std::int64_t>::max());
CHECK(ranges::index(rng, std::numeric_limits<std::int64_t>::max() - 1) ==
std::numeric_limits<std::int64_t>::max() - 1);
CHECK(ranges::at(rng, std::numeric_limits<std::int64_t>::max() - 1) ==
std::numeric_limits<std::int64_t>::max() - 1);
}
#if RANGES_CXX_CONSTEXPR >= RANGES_CXX_CONSTEXPR_14
{
constexpr int vi[4] = {1, 2, 3, 4};
constexpr int vi0 = ranges::index(vi, 0);
static_assert(vi0 == 1, "");
constexpr int vi1 = ranges::at(vi, 1);
static_assert(vi1 == 2, "");
}
#endif
return ::test_result();
}
|