summaryrefslogtreecommitdiff
path: root/deps/tao_tuple/28626e99/include/tao/seq/zip.hpp
blob: 42683b408fe4909d1ef4d892a75102fcac6eaccb (plain)
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
// The Art of C++ / Sequences
// Copyright (c) 2015 Daniel Frey

#ifndef TAOCPP_SEQUENCES_INCLUDE_ZIP_HPP
#define TAOCPP_SEQUENCES_INCLUDE_ZIP_HPP

#include <type_traits>

#include "integer_sequence.hpp"

namespace tao
{
  namespace seq
  {
    template< template< typename U, U, U > class, typename, typename >
    struct zip;

    template< template< typename U, U, U > class 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< CT, As, Bs >::value... >;
    };

    template< template< typename U, U, U > class OP, typename A, typename B >
    using zip_t = typename zip< OP, A, B >::type;
  }
}

#endif // TAOCPP_SEQUENCES_INCLUDE_ZIP_HPP