summary refs log tree commit diff stats
path: root/lib/pure/streams.nim
Commit message (Expand)AuthorAgeFilesLines
* StringStream and parseJson, parseCfg, parseSql et al for the vm (#10746)Arne Döring2019-02-281-1/+32
* make travis greenAraq2019-02-061-1/+1
* make streams.close more forgiving in order to break less code out thereAraq2019-02-061-1/+1
* Improve exception tracking in the streams module (#10453)Oscar Nihlgård2019-01-281-21/+16
* make the stdlib work with the changed docgenAraq2019-01-111-1/+1
* make Stream.{read,peek} procs public (#9806)Notkea2019-01-091-2/+2
* stdlib: documenation updates, the exception names have been changedAndreas Rumpf2018-10-251-28/+28
* Fixes #8841 (#9101)Yasuhiro Horimoto2018-10-091-2/+2
* WIP: disallow 'nil' for strings and seqsAndreas Rumpf2018-08-131-1/+4
* stdlib workZahary Karadjov2018-06-161-2/+14
* Hide readAll from js for tests passingdata-man2018-05-251-13/+14
* Fixes streams bugsdata-man2018-05-251-3/+3
* Fixes #7877data-man2018-05-251-1/+0
* Fixes #7877data-man2018-05-251-6/+8
* remove deprecated stuff from the stdlib; introduce better deprecation warningsAraq2018-05-051-31/+0
* Fixes #5281 (#7489)Dmitry Atamanov2018-04-061-0/+2
* Resolves #5588: adds openFileStream proc that throws on failure (#7282)twetzel592018-03-041-0/+10
* Update streams.nimindianpojken2017-10-161-8/+8
* Adds uintX variants to read/peek procsindianpojken2017-10-091-0/+32
* Fix (#6093)Dmitry Atamanov2017-07-171-2/+2
* fixes a long standing string steams bug that caused lexbase to misbehaveAndreas Rumpf2017-06-061-0/+4
* disable StringStream for JS (needs copyMem)Jacek Sieka2016-06-081-59/+59
* SpellcheckFederico Ceratto2016-02-291-1/+1
* Dont convert string to cstring when writing to stream.Yuriy Glukhov2016-01-211-1/+4
* use const instead of letRadu Oana2015-09-301-1/+1
* Move magic numbers to constRadu Oana2015-09-301-5/+6
* added streams.readAll procAraq2015-09-291-0/+12
* add default file mode to newFileStream()JamesP2015-09-261-1/+1
* add examples to top of module for stringStream and fileStreamJamesP2015-09-261-0/+20
* reworked deprecation to retain old procspatrick dw2015-06-191-2/+5
* Renamed writeln procs to writeLinepatrick dw2015-06-181-1/+3
* Allow to set position at end of streamFederico Omoto2015-06-091-1/+1
* lib/pure/p-t - Dropped 'T' from typespdw2015-06-041-1/+1
* Fix guard for streams testsFlaviu Tamas2015-05-251-1/+1
* Fix peekLine() for streamsSergey Avseyev2015-05-261-2/+6
* Remove trailing spacesSergey Avseyev2015-05-251-47/+47
* Added defer statementapense2015-05-241-1/+1
* Rewrote some peeking proceduresapense2015-05-211-27/+4
* Update streams.nimapense2015-05-041-0/+10
* Added peeking procedures to streamsapense2015-04-121-1/+111
* set the correct length for s.data when data truely increasedArchs2015-03-041-2/+2
* streams.ssWriteData: calling setLen only when new data truely increases the u...Archs2015-03-011-3/+5
* Fix typosFederico Ceratto2015-02-151-10/+10
* fixes the integer conversion regressionsAraq2015-01-131-1/+1
* Nimrod renamed to NimAraq2014-08-281-2/+2
* big renameAraq2014-08-271-95/+102
* renamefestAraq2014-08-231-9/+9
* made large parts of the stdlib gcsafeAraq2014-04-201-7/+9
* JS: Fixes math and streams module and implements json.Dominik Picheta2014-04-111-39/+41
* 'nil' as a statement is deprecated, use an empty 'discard' insteadAraq2014-01-191-1/+1
raq <rumpf_a@web.de> 2011-06-17 01:04:33 +0200 committer Araq <rumpf_a@web.de> 2011-06-17 01:04:33 +0200 got rid of unsound co/contravariance in procvars' href='/ahoang/Nim/commit/lib/pure/streams.nim?h=devel&id=849208d779e860230bb8682b3b356ba2942dd889'>849208d77 ^
ddaedab83 ^

849208d77 ^

ddaedab83 ^

849208d77 ^

ddaedab83 ^




849208d77 ^

ddaedab83 ^




849208d77 ^

ddaedab83 ^






40fa4bb52 ^





ddaedab83 ^





849208d77 ^
40fa4bb52 ^
849208d77 ^


ddaedab83 ^
849208d77 ^

ddaedab83 ^
849208d77 ^

ddaedab83 ^





40fa4bb52 ^






ddaedab83 ^




300430fbb ^
ddaedab83 ^





































































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