blob: 20bef4e9eecc33d0d6150bf85f9264df67f052d8 (
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
|
#ifndef TYPEASVALUE_SRC_PAIR_H_
#define TYPEASVALUE_SRC_PAIR_H_
#include <type_traits>
namespace tav {
namespace detail { struct pair_tag { }; }
template <
typename CAR,
typename CDR
>
struct Pair : detail::pair_tag {
typedef CAR car;
typedef CDR cdr;
typedef Pair<CAR, CDR> type;
};
template <typename Type>
using IsPair = std::is_base_of<detail::pair_tag, Type>;
}
#endif // TYPEASVALUE_SRC_PAIR_H_
|