summary refs log tree commit diff stats
path: root/lib/pure/collections/tables.nim
Commit message (Expand)AuthorAgeFilesLines
* Fix #4366 (#6290)Daniil Yarancev2017-09-021-1/+1
* tables.nim: use proper spacingAndreas Rumpf2017-08-311-5/+5
* fixes #6250 (#6251)David Krause2017-08-171-1/+15
* fix orderedtable enlarge proc. (#5937)Parashurama2017-06-051-2/+5
* Implement 'take' for Table and TableRef (#5773)Ruslan Mustakov2017-05-041-11/+30
* Minor: spelling correction in tables.nim (#5727)Zach Smith2017-04-191-2/+2
* fixes #5487 (#5494)David Krause2017-03-071-15/+49
* Fix for #5482, let OrderedTable accept multiple keys (#5485)David Krause2017-03-051-1/+15
* reenabled clear test, made clear working (#5323)Arne Döring2017-02-021-2/+5
* Fix description of CountTable's smallest procPaweł Świątkowski2016-12-111-2/+2
* Corrected test case for #5057.Yuriy Glukhov2016-11-271-3/+3
* Fixes #5057Yuriy Glukhov2016-11-261-12/+28
* Fixes #5035Felix Krause2016-11-181-10/+3
* Fixes #4974Felix Krause2016-10-311-9/+15
* fixes #4940andri lim2016-10-271-1/+1
* Fixes #4946Felix Krause2016-10-241-0/+1
* Table fixes. fixes #4901Felix Krause2016-10-231-4/+37
* fixes #4844Araq2016-10-081-1/+5
* fixes a critical tables bug that caused 'enlarge' to crash after 'add'Andreas Rumpf2016-09-051-3/+6
* Merge pull request #4367 from kierdavis/4365-tables-clearAndreas Rumpf2016-08-251-3/+3
|\
| * Add a fix for clear() on non-ref types by adding a missing 'var' annotation t...Kier Davis2016-07-091-3/+3
* | make nim bootstrap again for older versionsAndreas Rumpf2016-07-301-2/+2
* | stdlib and compiler don't use .immediate anymoreAndreas Rumpf2016-07-291-8/+8
* | Merge pull request #4463 from flyx/tables-equals-no-KeyErrorAndreas Rumpf2016-07-191-5/+4
|\ \
| * | Use getOrDefault for tables.`==`Felix Krause2016-07-081-7/+5
| * | `==` in tables should not raise KeyErrorFelix Krause2016-07-071-2/+3
| |/
* | use table literal syntaxAxel Pahl2016-07-121-2/+2
* | explain difference between Table and TableRef in tables.nimAxel Pahl2016-07-121-0/+33
|/
* Implement clear() for CountTableRef. Fixes #4325.Kier Davis2016-06-131-1/+1
* Implements tables.clear.Dominik Picheta2016-06-021-5/+29
* Introduce template withValue() for tables.nim too.cheatfate2016-05-271-0/+45
* Added del for OrderedTable and OrderedTableRefYuriy Glukhov2016-04-131-0/+41
* Fix CountTableRef#getOrDefaultSloane Simmons2016-01-091-1/+13
* udpated the compiler and tester to use getOrDefaultAraq2015-10-131-8/+10
* added getOrDefault; bootstrapping works againAraq2015-10-131-33/+38
* Merge branch 'mget' of https://github.com/def-/Nim into def--mgetAraq2015-10-131-33/+73
|\
| * Rename mget to `[]`def2015-03-311-55/+83
* | breaking change: symbol lookups in generics follows spec more closely; fixes ...Araq2015-08-071-4/+4
* | Merge branch 'more_concurrency' into develAraq2015-06-301-168/+49
|\ \
| * | some progress on making async multithreadedAraq2015-05-281-168/+49
* | | lib/pure/a-c - Dropped 'T' from typespdw2015-06-041-36/+36
* | | Add contains proc for tables to allow usage of `in`Jonathan2015-05-051-0/+24
|/ /
* | fixes #2625Araq2015-05-031-4/+7
* | Merge pull request #2411 from reactormonk/merge-counttablesAndreas Rumpf2015-04-211-0/+61
|\ \
| * | doc comments for mergeSimon Hafner2015-03-261-0/+3
| * | merge for CountTable, see #1680Simon Hafner2015-03-261-0/+58
| |/
* / Use more Natural and Positive numbers in proc parametersdef2015-04-061-1/+1
|/
* prepare for upcoming parsing change of unary operatorsAraq2015-03-221-10/+10
* Making tuples anonymous (so far... not finished).Hans Raaf2015-03-171-23/+22
* Fixed table getter not compiling when table value type had not '$' proc overr...krolik2015-03-051-1/+5
g.nim?h=devel&id=0e2a798af4ea210288cd85cde0373a3f13cc8025'>^
4d22cff8e ^

aa8da7f03 ^





e733debec ^
7eb39d9d2 ^
aa8da7f03 ^

















4d22cff8e ^

aa8da7f03 ^

e733debec ^
aa8da7f03 ^



1a61c4d46 ^
7eb39d9d2 ^
940b3ceca ^
aa8da7f03 ^
940b3ceca ^
aa8da7f03 ^

940b3ceca ^


aa8da7f03 ^



e733debec ^
7eb39d9d2 ^
e733debec ^

e733debec ^
aa8da7f03 ^
e733debec ^
aa8da7f03 ^
7eb39d9d2 ^
e733debec ^


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