Distributed Ranges
Loading...
Searching...
No Matches
views.hpp
1// SPDX-FileCopyrightText: Intel Corporation
2//
3// SPDX-License-Identifier: BSD-3-Clause
4
5#pragma once
6
7#include <dr/sp/views/standard_views.hpp>
8#include <dr/views/iota.hpp>
9#include <dr/views/transform.hpp>
10#include <dr/views/views.hpp>
11
12namespace dr::sp::views {
13
14inline constexpr auto all = rng::views::all;
15
16inline constexpr auto counted = rng::views::counted;
17
18inline constexpr auto drop = rng::views::drop;
19
20inline constexpr auto iota = dr::views::iota;
21
22inline constexpr auto take = rng::views::take;
23
24inline constexpr auto transform = dr::views::transform;
25
26} // namespace dr::sp::views