summary refs log tree commit diff stats
path: root/tests/collections
Commit message (Expand)AuthorAgeFilesLines
* Remove expr/stmt (#5857)Arne Döring2017-07-251-1/+1
* Implement 'take' for Table and TableRef (#5773)Ruslan Mustakov2017-05-041-0/+15
* Deques compilation error fix (#5591)Dmitriy Fomichev2017-03-241-0/+17
* Added clear() function for OrderedSet and HashSet. (#5545)GrundleTrundle2017-03-161-0/+42
* Add compute proc for SharedTable (#5385)Ruslan Mustakov2017-03-021-1/+25
* added hash for uints (#5435)Fabian Keller2017-02-261-0/+15
* reenabled clear test, made clear working (#5323)Arne Döring2017-02-021-22/+20
* Fixes #5035Felix Krause2016-11-181-1/+24
* Table fixes. fixes #4901Felix Krause2016-10-231-0/+33
* fixes a critical tables bug that caused 'enlarge' to crash after 'add'Andreas Rumpf2016-09-051-0/+13
* Disable failing tests for tables.clear()Kier Davis2016-07-091-20/+22
* Add tests for tables.clear()Kier Davis2016-07-092-0/+46
* Merge branch 'mget' of https://github.com/def-/Nim into def--mgetAraq2015-10-132-3/+9
|\
| * Rename mget to `[]`def2015-03-312-17/+23
* | improves new testsAraq2015-10-122-3/+12
* | sequtils related changesPeter Mora2015-10-052-0/+35
* | tests: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-042-3/+3
* | added hash function for ordinal typesFabian Keller2015-07-031-0/+75
* | Merge pull request #2660 from MrJohz/contains-tablesAndreas Rumpf2015-05-082-15/+19
|\ \
| * | Add contains proc for tables to allow usage of `in`Jonathan2015-05-052-15/+19
* | | Merge pull request #2596 from Nycto/develVarriount2015-05-071-14/+34
|\ \ \ | |/ / |/| |
| * | Fix floats in tuples in HashSetsNycto2015-04-241-14/+34
| |/
* / fixes #2625Araq2015-05-031-0/+19
|/
* Added Test for zip() with anonymous tuples.Hans Raaf2015-03-171-2/+7
* Fix unknown symbol in tables mpairs iterator.Hans Raaf2015-02-211-0/+16
* added test case for #2107Araq2015-02-201-0/+10
* Add some unit tests for mgetOrPut and hasKeyOrPut.Charles Blake2015-02-171-1/+9
* New probe seq swaps 1st two keys. Fix in compare.Charles Blake2015-02-161-1/+1
* New probe seq swaps 1st two keys. Fix in cmp.Charles Blake2015-02-131-1/+1
* fixed minor bugs; cleaned up testsAraq2015-02-126-21/+342
* moved tsets test to collections/Simon Hafner2014-02-121-0/+17
* indexBy, which indexes a collection into a hashtableSimon Hafner2014-02-061-0/+22
'Blame the previous revision' href='/ahoang/Nim/blame/tests/run/tdestructor.nim?h=devel&id=8e0941576fc30643a4cdcb532e180d0ca973ed85'>^
eaab22089 ^

02533c260 ^
















bb3f648bd ^
c1c6b6e50 ^




















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