summary refs log tree commit diff stats
path: root/lib/pure
Commit message (Collapse)AuthorAgeFilesLines
* Added debug code for futures.Dominik Picheta2014-07-141-3/+19
|
* Linux async fixes.Dominik Picheta2014-07-131-2/+2
|
* Implement safe flags for socket operations.Dominik Picheta2014-07-134-48/+108
|
* Fix broken async tests.Dominik Picheta2014-07-132-2/+2
|
* Void futures are no longer discardable.Dominik Picheta2014-07-133-12/+18
|
* Async fixes for Linux.Dominik Picheta2014-07-131-6/+7
|
* Many async optimisations.Dominik Picheta2014-07-124-118/+168
| | | | | | | | | * Selectors implementation will now attempt to immediately execute an IO operation instead of waiting for a ready notification. * Removed recursion in asynchttpserver. * Improved buffered implementation of recvLine in asyncnet. * Optimised ``respond`` in asynchttpserver removing a possible "Delayed ACK" situation.
* Export FileInfo objectdef2014-07-111-9/+9
|
* Merge branch 'devel' of https://github.com/Araq/Nimrod into develAraq2014-06-304-2/+55
|\
| * Merge pull request #1299 from gradha/pr_documents_interfacingAndreas Rumpf2014-06-303-2/+6
| |\ | | | | | | Documents backend interfacing
| | * Hyperlinks back JavaScript target.Grzegorz Adam Hankiewicz2014-06-213-2/+6
| | |
| * | Merge pull request #1301 from def-/sequtils-filter-directlyAndreas Rumpf2014-06-301-0/+49
| |\ \ | | | | | | | | Add keepIf proc and keepIfIt template to sequtils
| | * | Rename keepIfIt to keepItIfdef2014-06-281-5/+5
| | | |
| | * | Add keepIf proc and keepIfIt template to sequtilsdef2014-06-221-0/+49
| | | |
* | | | fixes constant array indexing bugAraq2014-06-301-0/+0
|/ / /
* | | Merge pull request #1318 from rbehrends/rename-distnctAndreas Rumpf2014-06-281-9/+5
|\ \ \ | | | | | | | | Rename sequtils.distnct to sequtils.deduplicate.
| * | | Rename sequtils.distnct to sequtils.deduplicate.Reimer Behrends2014-06-281-9/+5
| | | |
* | | | AsyncHttpServer now supports POST.Dominik Picheta2014-06-282-8/+34
| | | |
* | | | Futures with an error but no callback no longer raise.Dominik Picheta2014-06-281-6/+11
|/ / / | | | | | | | | | | | | | | | | | | This was done as a safety measure against futures which may be accidentally discarded when they have an exception leading the exception being silently forgotten. Unfortunately we will need to come up with some other solution.
* | | Fixed TSet proc names to conform with setFelix Krause2014-06-261-3/+3
| | |
* | | Fixed doc comments in sets.nimFelix Krause2014-06-261-4/+4
| | |
* | | Added logical set operations to TSetFelix Krause2014-06-251-0/+49
|/ /
* | Remove varargs from json.`{}`Dominik Picheta2014-06-221-6/+4
| |
* | Allow async lambdas. Other socket modifications.Dominik Picheta2014-06-194-12/+25
| |
* | fix json.`[]`Billingsly Wetherfordshire2014-06-171-1/+1
| |
* | Merge pull request #1281 from Araq/new_spawnAndreas Rumpf2014-06-164-35/+535
|\ \ | | | | | | New spawn
| * | some changesAraq2014-06-091-9/+9
| | |
| * | Merge branch 'new_spawn' of https://github.com/Araq/Nimrod into new_spawnAraq2014-06-061-121/+144
| |\ \
| | * | big rename: Promise -> FlowVarAraq2014-06-061-62/+62
| | | |
| | * | added 'fence' instructions to the barrierAraq2014-06-061-9/+16
| | | |
| | * | Promises are now refsAraq2014-06-051-57/+67
| | | |
| | * | barrier more efficientAraq2014-06-031-19/+25
| | | |
| * | | Merge branch 'new_spawn' of https://github.com/Araq/Nimrod into new_spawnAraq2014-06-021-7/+15
| |\| |
| | * | hopefully faster barrier implementationAraq2014-06-021-6/+14
| | | |
| | * | bugfix: codegen for promisesAraq2014-06-021-1/+1
| | | |
| * | | Merge branch 'new_spawn' of https://github.com/Araq/Nimrod into new_spawnAraq2014-06-014-35/+504
| |\| |
| | * | bugfix: regionized pointers in a generic context; renamed 'Future' to 'Promise'Araq2014-05-251-55/+79
| | | |
| | * | progress with futuresAraq2014-05-231-18/+15
| | | |
| | * | 'parallel' statement almost workingAraq2014-05-221-0/+112
| | | |
| | * | progress for the 'parallel' statementAraq2014-05-141-11/+15
| | | |
| | * | initial non-compiling version of 'parallel'Araq2014-05-124-35/+367
| | | |
* | | | Update json.nimVarriount2014-06-141-1/+1
| |_|/ |/| | | | | Fixed a bug with json.[], which caused a segfault on debug builds.
* | | Merge pull request #1251 from gradha/pr_misc_docsAndreas Rumpf2014-06-123-3/+41
|\ \ \ | | | | | | | | Misc docs suggestions
| * | | Revert "Adds to tables module example of reference type vs value type."Grzegorz Adam Hankiewicz2014-06-101-32/+2
| | | | | | | | | | | | | | | | This reverts commit bde9d1ac0753e46c726dc63930539bb82d09f19d.
| * | | Adds brief intro to hashes module.Grzegorz Adam Hankiewicz2014-06-061-1/+28
| | | |
| * | | Adds to tables module example of reference type vs value type.Grzegorz Adam Hankiewicz2014-06-061-2/+32
| | | |
| * | | Avoids temporal string in tables hashing example.Grzegorz Adam Hankiewicz2014-06-061-2/+4
| | | |
| * | | Adds do notation example to algorithm.sort.Grzegorz Adam Hankiewicz2014-06-061-0/+9
| | | |
* | | | added allValues iteratorAraq2014-06-121-2/+9
|/ / /
* | | Capitalised enum value names in JSON module.Dominik Picheta2014-06-051-7/+7
| | |
f='/akkartik/mu/blame/cpp/literate/012run?h=main&id=96ac511e9e789dfe0dd16e5216b7a957338fe3d3'>^
9d670bb5 ^
9fc64bbc ^

e74a2940 ^




3c435756 ^


2199940a ^
ac0e9db5 ^
8eff7919 ^
ec926027 ^

7c8493b3 ^
b75e94b3 ^
ec926027 ^

dcfca05e ^
05d17773 ^
dcfca05e ^

69e14325 ^
ac0e9db5 ^
ec926027 ^

b39ceb27 ^
3663ca6c ^
e7f76736 ^
e7f76736 ^
6ace0363 ^
e7f76736 ^
b39ceb27 ^
e7f76736 ^
b39ceb27 ^


6c1376f8 ^


a8007cc4 ^
363be37f ^
6c1376f8 ^
e7f76736 ^
6c1376f8 ^
fb4836dc ^
e7f76736 ^

267ebb59 ^
e0551d78 ^



c062021a ^







e0551d78 ^
e0551d78 ^

f78f92c5 ^
11312cec ^
24047016 ^
f78f92c5 ^







6ace0363 ^
267ebb59 ^
bb8a644b ^
f5f4b698 ^
35064671 ^
f5f4b698 ^

ad8e984f ^
8c9e97ae ^
2b7a7498 ^
267ebb59 ^
ccd792da ^

b98d3876 ^
267ebb59 ^

7284d503 ^
96f19e1e ^
6ace0363 ^
3c435756 ^
3c435756 ^
2199940a ^
3c435756 ^
363be37f ^
981cc9e8 ^
b1bbe92d ^
96f19e1e ^
3c435756 ^
3c435756 ^
7284d503 ^

fca0ebbe ^
fca0ebbe ^
ab6ed192 ^
a4ef18b1 ^
a26cc359 ^

ac0e9db5 ^


fca0ebbe ^
35064671 ^
b291f85b ^

cae5461b ^


fca0ebbe ^
6b6dfb0c ^
18429d40 ^
ac0e9db5 ^
70179d1f ^
86778aa4 ^
35064671 ^
70179d1f ^
ac0e9db5 ^
35064671 ^
05d17773 ^
b291f85b ^
cae5461b ^

c1a50c82 ^
ac0e9db5 ^
93b7d983 ^

3076bab4 ^

363be37f ^
93b7d983 ^
f1a6f323 ^
f48f6c14 ^
eaa75c87 ^
decaddb4 ^
70179d1f ^
c91caafd ^

6c1376f8 ^
70179d1f ^


6b6dfb0c ^



ab6ed192 ^
ac0e9db5 ^
c82d0176 ^

6d2b1168 ^



decaddb4 ^


bc643692 ^
5497090a ^
decaddb4 ^
bc643692 ^
d7494165 ^

fc55fea0 ^


bc643692 ^
fc55fea0 ^
bc643692 ^
18429d40 ^
bc643692 ^
18429d40 ^
bc643692 ^
18429d40 ^
bc643692 ^
6d2b1168 ^




















677fa104 ^





578327f1 ^
677fa104 ^
578327f1 ^
677fa104 ^


578327f1 ^
677fa104 ^
578327f1 ^
677fa104 ^


578327f1 ^
677fa104 ^
578327f1 ^
677fa104 ^


578327f1 ^
677fa104 ^
578327f1 ^
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357