summary refs log tree commit diff stats
path: root/lib/system/sysstr.nim
Commit message (Expand)AuthorAgeFilesLines
* make the Windows build green againAraq2017-10-171-2/+3
* breaking change: arrays of char do not convert to cstring; ptr to array of ch...Andreas Rumpf2017-10-101-4/+16
* revert the 'wasMoved' logic until the write barrier has been adaptedAndreas Rumpf2017-09-291-1/+2
* new string behaviour now available under nimShallowStringsAndreas Rumpf2017-09-221-6/+3
* preparations for string optimizationsAndreas Rumpf2017-09-221-2/+25
* hotfix: fixes seq.add and str.add for edge casesAndreas Rumpf2017-09-161-8/+12
* WIP: --gc:regions instead of --gc:stackAraq2017-08-131-2/+9
* system.nim: don't use deprecated symbols/constructsAraq2017-02-081-4/+4
* string.add for floats and ints for more performance (JS not yet supported)Andreas Rumpf2016-11-211-28/+23
* fixes #4776Andreas Rumpf2016-09-241-0/+5
* Fixes $(0.0/0.0) giving `-nan` on some systems.Dominik Picheta2016-09-171-1/+1
* Fix for cstring nil to string nil conversion with `$`Hans Raaf2016-07-291-1/+2
* remove system/ansi_c include from osJacek Sieka2016-06-051-1/+1
* fix types of ansi_c/sysio to more closely match C ABIJacek Sieka2016-06-051-9/+9
* fixes issue 4212 && add test for various valid zero floats.Parashurama2016-05-251-2/+2
* fixes #4212Andreas Rumpf2016-05-251-5/+0
* fixes some issues with underscores in float literals. add more tests.Parashurama2016-05-191-5/+7
* fix issue 4181. add testcase.Parashurama2016-05-181-2/+5
* make float parsing locale independent.Parashurama2016-05-161-37/+104
* simple stuff works with --gc:stackAndreas Rumpf2016-04-181-1/+2
* first compiling version of the new GCAraq2015-12-011-1/+1
* fixes #1832Araq2015-07-241-0/+8
* conditional TGenericSeq extensionStefan Talpalaru2015-06-161-2/+4
* fix growObj() with stringsStefan Talpalaru2015-06-091-0/+2
* the Go GC - initial implementationStefan Talpalaru2015-05-311-1/+1
* fixes --gc:none regression; made some tests greenAraq2015-03-101-6/+6
* Fix copyStrLast to set the trailing \0 chardef2015-03-041-1/+2
* sizeof(char) is always 1def2015-03-041-8/+8
* Only zero strings when necessary.def2015-03-041-13/+24
* Only copy strings to their size, not capacitydef2015-03-031-2/+2
* some love for the testsuite; fixed regressionsAraq2015-03-011-1/+11
* Merge pull request #2150 from def-/gc2-compilingAndreas Rumpf2015-02-161-1/+1
|\
| * Clean up some more deprecation warningsdef2015-02-161-1/+1
* | Fix typosFederico Ceratto2015-02-151-2/+2
|/
* fixes #1712Araq2014-12-071-2/+2
* system files use new identifiersAraq2014-08-231-2/+2
* the big renamefest: first stepsAraq2014-08-221-4/+4
* distinguish between 'defined' and 'declared'Araq2014-08-111-2/+2
* fixes #1391Araq2014-07-221-1/+1
* parseBiggestFloat is now builtinAraq2014-07-161-6/+105
* More human readable `$`(float)katlogic2014-06-151-4/+10
* Revert 4b09baa0a and 33fcd1123.Dominik Picheta2014-04-201-4/+2
* add a trailing zero to $floatSimon Hafner2014-02-111-0/+2
* use `.f` instead of `.16e` for floatsSimon Hafner2014-02-111-2/+2
* improvements for 'pretty'Araq2013-12-281-5/+5
* case consistency part 4Araq2013-12-271-8/+8
* Removes executable bit for text files.Grzegorz Adam Hankiewicz2013-03-161-0/+0
* some bugfixes; no system.$ for object as it breaks codeAraq2013-02-241-6/+7
* first version of a simple mark&sweep GC; activate with --gc:markAndSweepAraq2013-02-071-1/+2
* revert to old GC; use --gc:v2 to activate the new GCAraq2013-01-311-10/+16
39:14 +0100 committer Dominik Picheta <dominikpicheta@googlemail.com> 2014-09-05 17:39:14 +0100 Add asyncfile module.' href='/ahoang/Nim/commit/lib/pure/asyncfile.nim?h=devel&id=31deee5142a0f2d7a4e0c6f24f614b2d50573461'>31deee514 ^
502080669 ^
31deee514 ^



baae9bfea ^
31deee514 ^

















































52c16a1a7 ^








e686ca252 ^
52c16a1a7 ^












31deee514 ^

cb8a25b3d ^












31deee514 ^









502080669 ^
52c16a1a7 ^

e686ca252 ^
31deee514 ^
















502080669 ^
31deee514 ^




baae9bfea ^
31deee514 ^




































52c16a1a7 ^









e686ca252 ^
52c16a1a7 ^











31deee514 ^



502080669 ^
31deee514 ^
e686ca252 ^
52c16a1a7 ^

e686ca252 ^
31deee514 ^
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