-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathinclusive_scan.hpp
42 lines (32 loc) · 1.03 KB
/
inclusive_scan.hpp
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
// Copyright (c) 2015-2020 Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/sequences/
#ifndef TAO_SEQ_INCLUSIVE_SCAN_HPP
#define TAO_SEQ_INCLUSIVE_SCAN_HPP
#include "exclusive_scan.hpp"
#include "integer_sequence.hpp"
namespace tao
{
namespace sequence
{
template< typename OP, typename T, T... Ns >
struct inclusive_scan;
template< typename OP, typename T >
struct inclusive_scan< OP, T >
{
using type = integer_sequence< T >;
};
template< typename OP, typename T, T N, T... Ns >
struct inclusive_scan< OP, T, N, Ns... >
: exclusive_scan< OP, T, N, Ns..., N >
{
};
template< typename OP, typename T, T... Ns >
struct inclusive_scan< OP, integer_sequence< T, Ns... > >
: inclusive_scan< OP, T, Ns... >
{
};
template< typename OP, typename T, T... Ns >
using inclusive_scan_t = typename inclusive_scan< OP, T, Ns... >::type;
} // namespace sequence
} // namespace tao
#endif