Thrill
0.1
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
+
Variables
a
b
c
d
f
g
i
k
l
m
n
p
r
s
t
v
w
x
+
Typedefs
a
b
c
d
e
f
g
h
i
l
m
o
p
r
s
t
u
v
w
Enumerations
+
Enumerator
c
d
h
i
m
s
t
w
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
~
+
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Enumerations
+
Enumerator
a
b
c
d
f
m
n
o
p
r
s
t
v
w
+
Related Functions
o
p
s
+
Files
File List
+
File Members
+
All
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
w
+
Functions
b
c
d
f
g
h
j
l
m
o
p
r
s
t
u
w
Variables
Typedefs
+
Macros
_
a
b
c
d
f
h
i
l
m
o
p
s
t
u
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
tmeta.hpp
Go to the documentation of this file.
1
/***************************************************************************
2
* foxxll/common/tmeta.hpp
3
*
4
* Template Metaprogramming Tools
5
* (from the Generative Programming book Krysztof Czarnecki, Ulrich Eisenecker)
6
*
7
* Part of FOXXLL. See http://foxxll.org
8
*
9
* Copyright (C) 2003 Roman Dementiev <dementiev@mpi-sb.mpg.de>
10
* Copyright (C) 2008 Andreas Beckmann <beckmann@cs.uni-frankfurt.de>
11
*
12
* Distributed under the Boost Software License, Version 1.0.
13
* (See accompanying file LICENSE_1_0.txt or copy at
14
* http://www.boost.org/LICENSE_1_0.txt)
15
**************************************************************************/
16
17
#ifndef FOXXLL_COMMON_TMETA_HEADER
18
#define FOXXLL_COMMON_TMETA_HEADER
19
20
#include <type_traits>
21
22
#include <
foxxll/common/types.hpp
>
23
24
namespace
foxxll
{
25
26
const
int
DEFAULT
= ~(~0u >> 1);
// initialize with the smallest int
27
28
struct
NilCase
{ };
29
30
template
<
int
Tag,
class
Type_,
class
Next_ = NilCase>
31
struct
CASE
32
{
33
enum
{ tag = Tag };
34
using
Type
= Type_;
35
using
Next
= Next_;
36
};
37
38
template
<
int
Tag,
class
Case>
39
class
SWITCH
40
{
41
using
NextCase
=
typename
Case::Next;
42
enum
43
{
44
caseTag = Case::tag,
45
found = (caseTag == Tag || caseTag ==
DEFAULT
)
46
};
47
48
public
:
49
using
type
=
typename
std::conditional<
50
found,
51
typename
Case::Type
,
52
typename
SWITCH<Tag, NextCase>::type
53
>
::type
;
54
};
55
56
template
<
int
Tag>
57
class
SWITCH
<Tag,
NilCase
>
58
{
59
public
:
60
using
type
=
NilCase
;
61
};
62
63
}
// namespace foxxll
64
65
#endif // !FOXXLL_COMMON_TMETA_HEADER
66
67
/**************************************************************************/
foxxll::CASE
Definition:
tmeta.hpp:31
thrill::vfs::Type
Type
VFS object type.
Definition:
file_io.hpp:52
foxxll::NilCase
Definition:
tmeta.hpp:28
foxxll::SWITCH::type
typename std::conditional< found, typename Case::Type, typename SWITCH< Tag, NextCase >::type >::type type
Definition:
tmeta.hpp:53
types.hpp
foxxll::CASE::Next
Next_ Next
Definition:
tmeta.hpp:35
foxxll::SWITCH
Definition:
tmeta.hpp:39
foxxll::DEFAULT
const int DEFAULT
Definition:
tmeta.hpp:26
foxxll
FOXXLL library namespace
Definition:
addressable_queues.hpp:23
foxxll::SWITCH::NextCase
typename Case::Next NextCase
Definition:
tmeta.hpp:41
foxxll::CASE::Type
Type_ Type
Definition:
tmeta.hpp:34
extlib
foxxll
foxxll
common
tmeta.hpp
Generated on Mon Apr 6 2020 09:17:55 for Thrill by
1.8.13