summary refs log tree commit diff stats
path: root/lib/pure/strutils.nim
Commit message (Expand)AuthorAgeFilesLines
* lib/pure/strutils.nim: fix doc comment for splitLinesKeita Haga2011-08-251-53/+53
* bugfix: proper cache for generic instantiationsAraq2011-07-211-62/+61
* code gen bugfixes; marshal.nim implementedAraq2011-06-261-40/+40
* bugfixes for semantic checking; thread implementation pushed the compilerAraq2011-06-041-0/+6
* deprecated system.copy: use system.substr insteadAraq2011-05-141-13/+13
* newStringOfCap implemented and used to optimize some procsAraq2011-05-081-7/+13
* := templatable; lexer improvementsAraq2011-04-171-6/+6
* linearScanEnd pragma; string case statement optimizationAraq2011-03-141-3/+6
* distinction between re.replace and re.replacef; speed improvements for re moduleAraq2011-03-061-2/+2
* various bugfixes for generics; added generic sort procAraq2011-03-031-4/+5
* tests themselves contain the expected resultAraq2011-02-201-3/+3
* documentation improvementsAraq2011-02-061-0/+1
* nimgrep: first working versionAraq2011-02-021-1/+3
* httpserver may work better nowAraq2011-01-131-56/+56
* bugfix: floating point precision; added strutils.formatFloatAraq2011-01-091-2/+58
* bugfix: multiple yield statements and loop body varsAraq2010-12-131-1/+65
* added strutils.alignAraq2010-12-071-3/+23
* inlining of the write barrier for dllsAndreas Rumpf2010-08-081-318/+304
* before stack init changeAndreas Rumpf2010-08-011-2/+0
* handling of compiler procs improved for DLL generationAndreas Rumpf2010-07-291-41/+0
* c2nim tool addedAndreas Rumpf2010-07-211-2/+5
* Integrating my changes, mostly minor/cosmetic fixes; plus a big Windows lib u...PhiLho2010-05-211-914/+918
* Bugfix: strutils.deleteAndreas Rumpf2010-03-201-6/+6
* bugfix: return type of gtk2.check_menu_item_new*Andreas Rumpf2010-03-171-2/+2
* bugfix: len openarrayAndreas Rumpf2010-03-101-0/+18
* addes osinfo_* modulesrumpf_a@web.de2010-03-071-2/+1
* added missing library filesrumpf_a@web.de2010-03-071-1/+2
* bugfix: macro evaluation; added colors.extractRGBAndreas Rumpf2010-03-041-4/+0
* fixed graphics moduleAndreas Rumpf2010-03-031-0/+4
* fixed pango/pangoutils new wrappersAndreas Rumpf2010-02-261-0/+0
* BUGFIX: strutils.cmpIgnoreCaseAndreas Rumpf2010-02-141-6/+7
* continued work on html/xmlparserrumpf_a@web.de2010-02-141-10/+0
* parseutils addedrumpf_a@web.de2010-01-311-114/+9
* atomic is now a keywordAndreas Rumpf2010-01-211-1/+15
* strutils.parseHexInt addedAndreas Rumpf2010-01-181-0/+23
* sockets module completeAndreas Rumpf2010-01-131-3/+3
* version 0.8.5: bugfixes; compiler now maintained in NimrodAndreas Rumpf2009-12-071-1/+1
* nimrod compiles againAndreas Rumpf2009-11-161-2/+1
* bugfixes: macros; splitFile; strutils.split; iterator.methodrumpf_a@web.de2009-10-271-5/+4
* version 0.8.2rumpf_a@web.de2009-10-211-76/+15
* implemented multi methodsAndreas Rumpf2009-09-231-14/+12
* added tools and web dirsAndreas Rumpf2009-09-151-25/+48
* overload resolution for proc varsAndreas Rumpf2009-06-241-14/+54
* version0.7.10Andreas Rumpf2009-06-081-0/+975
=2169fd63bdf9caf539ca7ca5b661ee703206500c'>2169fd63b ^
a58a2f382 ^
6bc16904e ^
a58a2f382 ^
2169fd63b ^

90119066a ^

90119066a ^






































































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