init
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled

This commit is contained in:
allhaileris
2026-02-16 15:50:16 +03:00
commit afb81b8278
13816 changed files with 3689732 additions and 0 deletions

View File

@@ -0,0 +1,130 @@
// Range v3 library
//
// Copyright Eric Niebler 2014-present
//
// 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
//
// Copyright 2005 - 2007 Adobe Systems Incorporated
// Distributed under the MIT License(see accompanying file LICENSE_1_0_0.txt
// or a copy at http://stlab.adobe.com/licenses.html)
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include <utility>
#include <range/v3/core.hpp>
#include <range/v3/algorithm/reverse.hpp>
#include "../simple_test.hpp"
#include "../test_utils.hpp"
#include "../test_iterators.hpp"
template<class Iter, class Sent = Iter>
void test()
{
// iterators
{
int ia[] = {0};
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
Iter i0 = ranges::reverse(Iter(ia), Sent(ia));
::check_equal(ia, {0});
CHECK(i0 == Iter(ia));
Iter i1 = ranges::reverse(Iter(ia), Sent(ia+sa));
::check_equal(ia, {0});
CHECK(i1 == Iter(ia+sa));
int ib[] = {0, 1};
const unsigned sb = sizeof(ib)/sizeof(ib[0]);
Iter i2 = ranges::reverse(Iter(ib), Sent(ib+sb));
::check_equal(ib, {1, 0});
CHECK(i2 == Iter(ib+sb));
int ic[] = {0, 1, 2};
const unsigned sc = sizeof(ic)/sizeof(ic[0]);
Iter i3 = ranges::reverse(Iter(ic), Sent(ic+sc));
::check_equal(ic, {2, 1, 0});
CHECK(i3 == Iter(ic+sc));
int id[] = {0, 1, 2, 3};
const unsigned sd = sizeof(id)/sizeof(id[0]);
Iter i4 = ranges::reverse(Iter(id), Sent(id+sd));
::check_equal(id, {3, 2, 1, 0});
CHECK(i4 == Iter(id+sd));
}
// ranges
{
int ia[] = {0};
const unsigned sa = sizeof(ia)/sizeof(ia[0]);
Iter i0 = ranges::reverse(::as_lvalue(ranges::make_subrange(Iter(ia), Sent(ia))));
::check_equal(ia, {0});
CHECK(i0 == Iter(ia));
Iter i1 = ranges::reverse(::as_lvalue(ranges::make_subrange(Iter(ia), Sent(ia+sa))));
::check_equal(ia, {0});
CHECK(i1 == Iter(ia+sa));
int ib[] = {0, 1};
const unsigned sb = sizeof(ib)/sizeof(ib[0]);
Iter i2 = ranges::reverse(::as_lvalue(ranges::make_subrange(Iter(ib), Sent(ib+sb))));
::check_equal(ib, {1, 0});
CHECK(i2 == Iter(ib+sb));
int ic[] = {0, 1, 2};
const unsigned sc = sizeof(ic)/sizeof(ic[0]);
Iter i3 = ranges::reverse(::as_lvalue(ranges::make_subrange(Iter(ic), Sent(ic+sc))));
::check_equal(ic, {2, 1, 0});
CHECK(i3 == Iter(ic+sc));
int id[] = {0, 1, 2, 3};
const unsigned sd = sizeof(id)/sizeof(id[0]);
Iter i4 = ranges::reverse(::as_lvalue(ranges::make_subrange(Iter(id), Sent(id+sd))));
::check_equal(id, {3, 2, 1, 0});
CHECK(i4 == Iter(id+sd));
// rvalue range
auto i5 = ranges::reverse(ranges::make_subrange(Iter(id), Sent(id+sd)));
::check_equal(id, {0, 1, 2, 3});
CHECK(i5 == Iter(id+sd));
}
}
constexpr bool test_constexpr()
{
using namespace ranges;
int ia[] = {0, 1, 2, 3, 4};
constexpr auto sa = ranges::size(ia);
auto r = ranges::reverse(ia);
STATIC_CHECK_RETURN(r == ia + sa);
STATIC_CHECK_RETURN(ia[0] == 4);
STATIC_CHECK_RETURN(ia[1] == 3);
STATIC_CHECK_RETURN(ia[2] == 2);
STATIC_CHECK_RETURN(ia[3] == 1);
STATIC_CHECK_RETURN(ia[4] == 0);
return true;
}
int main()
{
test<BidirectionalIterator<int *>>();
test<RandomAccessIterator<int *>>();
test<int*>();
test<BidirectionalIterator<int *>, Sentinel<int*>>();
test<RandomAccessIterator<int *>, Sentinel<int*>>();
{
STATIC_CHECK(test_constexpr());
}
return ::test_result();
}