forked from lhamot/CPP2D
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcpp_std.d
166 lines (123 loc) · 2.95 KB
/
cpp_std.d
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
import std.container.rbtree;
import std.container.array;
import std.typecons;
import std.stdio;
import std.conv;
//****************************** map *****************************************
alias pair(K, V) = Tuple!(K, "key", V, "value");
alias map(K, V, alias less = "a[0] < b[0]") = RedBlackTree!(pair!(K, V), less, false);
alias multimap(K, V, alias less = "a < b") = RedBlackTree!(pair!(K, V), less, true);
//************************** boost::serialization ****************************
template class_version(T)
{
immutable(int) class_version = 0;
}
template class_version(T: double)
{
immutable(int) class_version = 6;
}
//************************** std::vector **************************************
struct allocator(T){}
alias vector(T, A = allocator!T) = Array!T;
//************************** std::set **************************************
struct set(T, alias less = "a < b", A = allocator!T)
{
RedBlackTree!(T, less) data = new RedBlackTree!(T, less);
auto length() {return data.length;}
this()(auto this)
{
data = data.dup;
}
}
//************************** unordered_map **************************************
struct unordered_map(K, V)
{
V[K] ptr;
}
//************************* cpp-like lambda helper ****************************
struct toFunctor(alias F)
{
this(int){}
auto ref opCall(Args...)(auto ref Args args)
{
return F(args);
}
}
//************************* default ctor helper ****************************
struct DefaultCtorArgType{};
static DefaultCtorArgType DefaultCtorArg;
// ********************** std::move ****************************************
auto move(T)(auto ref T ptr) if(is(T == struct))
{
auto newPtr = ptr;
ptr = T.init;
return newPtr;
}
auto move(T)(auto ref T ptr) if(is(T == class))
{
auto newPtr = ptr;
ptr = null;
return newPtr;
}
// ******************************** <utility> *********************************
auto make_pair(A, B)(auto ref A a, auto ref B b)
{
//return Tuple!(A, "key", B, "value")(a, b);
return pair!(A, B)(a, b);
}
// ******************************* other **************************************
struct Ref(T)
{
T* ptr;
this(U)(auto ref U other)
{
ptr = &other;
}
ref T opCast()
{
return *ptr;
}
bool opBinary(string op, U)(auto ref U other)
{
return mixin("*ptr" ~ op ~ "other");
}
bool opBinary(string op, U = Ref!U)(auto ref Ref!U other)
{
return mixin("*ptr" ~ op ~ "*other.ptr");
}
alias ptr this;
}
auto makeRef(T)(ref auto T val)
{
return Ref!T(val);
}
//************************* iostream ******************************************
struct OStream
{
File file;
ref OStream opBinary(string op = "<<", T)(auto ref T arg)
{
file.write(arg);
return this;
}
}
enum ios_base
{
in_ = 1,
out_ = 2
}
struct Stringstream
{
string data;
this(ios_base mode){}
this(string str, int mode = 3){data = str;}
ref Stringstream opBinary(string op = "<<", T)(auto ref T arg)
{
data ~= to!string(arg);
return this;
}
string str()
{
return data;
}
}