libQuotient
A Qt library for building matrix clients
Loading...
Searching...
No Matches
ranges_extras.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: The Quotient Project Contributors
2// SPDX-License-Identifier: LGPL-3.0-or-later
3
4#pragma once
5
6#include <ranges>
7
8namespace Quotient {
9
10//! \brief An indexOf() alternative for any range
11//!
12//! Unlike QList::indexOf(), returns `range.size()` if \p value is not found
13template <typename RangeT, typename ValT, typename ProjT = std::identity>
16inline auto findIndex(const RangeT& range, const ValT& value, ProjT proj = {})
17{
18 using namespace std::ranges;
20}
21
22//! \brief A replacement of std::ranges::to() while toolchains catch up
23//!
24//! Returns a container of type \p TargetT created from \p sourceRange. Unlike std::ranges::to(),
25//! you have to pass the range to it (e.g. `rangeTo<TargetT>(someRange)`); using it in a pipeline
26//! (`someRange | rangeTo<TargetT>()`) won't compile. Internally calls std::ranges::to() if it's
27//! available; otherwise, returns the result of calling
28//! `TargetT(ranges::begin(sourceRange), ranges::end(sourceRange))`.
29template <class TargetT, typename SourceT>
30[[nodiscard]] constexpr auto rangeTo(SourceT&& sourceRange)
31{
32#if defined(__cpp_lib_ranges_to_container)
33 return std::ranges::to<TargetT>(std::forward<SourceT>(sourceRange));
34#else
35 using std::begin, std::end;
36 return TargetT(begin(sourceRange), end(sourceRange));
37#endif
38}
39
40//! An overload that accepts unspecialised container template
41template <template <typename> class TargetT, typename SourceT>
42[[nodiscard]] constexpr auto rangeTo(SourceT&& sourceRange)
43{
44 // Avoid template argument deduction because Xcode still can't do it when TargetT is an alias
45#if defined(__cpp_lib_ranges_to_container)
46 return std::ranges::to<TargetT<std::ranges::range_value_t<SourceT>>>(
47 std::forward<SourceT>(sourceRange));
48#else
49 using std::begin, std::end;
50 return TargetT<std::ranges::range_value_t<SourceT>>(begin(sourceRange), end(sourceRange));
51#endif
52}
53
54#ifdef __cpp_lib_ranges_contains
55constexpr auto rangeContains = std::ranges::contains;
56#else
57[[nodiscard]] constexpr auto rangeContains(const auto& c, const auto& v, auto proj)
58{
59 return std::ranges::find(c, v, std::move(proj)) != std::ranges::end(c);
60}
61#endif
62
63}
constexpr auto rangeContains(const auto &c, const auto &v, auto proj)
constexpr auto rangeTo(SourceT &&sourceRange)
A replacement of std::ranges::to() while toolchains catch up.