forked from taocpp/sequences
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzip.hpp
32 lines (23 loc) · 821 Bytes
/
zip.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
// Copyright (c) 2015-2018 Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/sequences/
#ifndef TAO_SEQ_ZIP_HPP
#define TAO_SEQ_ZIP_HPP
#include <type_traits>
#include "integer_sequence.hpp"
namespace tao
{
namespace seq
{
template< typename, typename, typename >
struct zip;
template< typename OP, typename TA, TA... As, typename TB, TB... Bs >
struct zip< OP, integer_sequence< TA, As... >, integer_sequence< TB, Bs... > >
{
using CT = typename std::common_type< TA, TB >::type;
using type = integer_sequence< CT, OP::template apply< CT, As, Bs >::value... >;
};
template< typename OP, typename A, typename B >
using zip_t = typename zip< OP, A, B >::type;
} // namespace seq
} // namespace tao
#endif