New tests.
[mono.git] / mcs / class / System.Core / System.Collections.Generic / ChangeLog
1 2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>
2
3         * HashSet.cs: Implement ISet<T> in MOONLIGHT too
4
5 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6
7         * HashSet.cs: fix and test for bug #579791.  Patch from Tiaan
8         Geldenhuys.
9
10 2009-11-13  Marek Safar  <marek.safar@gmail.com>
11
12         * HasSet.cs: Add ISet, debugger view.
13
14 2009-07-30  Raja R Harinath  <harinath@hurrynot.org>
15
16         * HashSet.cs (Enumerator.CheckCurrent): Inline into ...
17         (Enumerator.IEnumerator.Current): ... this.
18         (Enumerator.IEnumerator.Reset): Check invariants.
19
20 2009-07-30  Raja R Harinath  <harinath@hurrynot.org>
21
22         * HashSet.cs (Enumerator.next): Rename from Enumerator.current and
23         change meaning to be the index of the slot to start searching on
24         the next iteration.
25         (Enumerator.current): New.  Contains the current element.
26         (Enumerator.MoveNext): Update.  Avoid an out-of-bounds access.
27         (Enumerator.Current): Don't check any invariants.
28
29 2009-07-09  Jb Evain  <jbevain@novell.com>
30
31         * HashSet.cs (ICollection<T>.Add): fix for bug #520760. Do not throw
32         when adding duplicates.
33
34 2009-01-27  Jb Evain  <jbevain@novell.com>
35
36         * HashSet.cs: use Paolo's trick to return items in insertion order
37         when possible.
38
39 2008-12-17  Jb Evain  <jbevain@novell.com>
40
41         * HashSet.cs (CopyTo): fix logic.
42
43 2008-09-12  Jb Evain  <jbevain@novell.com>
44
45         * HashSet.cs (.ctor (IEnumerable<T>,*)): only get the count of the
46         enumerable if the source collection implements ICollection<T>, so that
47         we only iterate once over the source collection.
48
49 2008-04-29  Jb Evain  <jbevain@novell.com>
50
51         * HashSet.cs: clear empty slots to allow the GC to collect
52         their values.
53
54 2007-11-30  Jb Evain  <jbevain@novell.com>
55
56         * HashSet.cs: corcompare love.
57
58 2007-11-28  Jb Evain  <jbevain@novell.com>
59
60         * HashSet.cs: do the ArgumentNullException dance.
61
62 2007-11-28  Jb Evain  <jbevain@novell.com>
63
64         * HashSet.cs: start implementation of HashSet<T>, actually
65         implemented as a reduction of Dictionary<K, V>. Contains
66         basic set operations (that requires optimization though).
67
68 2007-08-12  Marek Safar  <marek.safar@gmail.com>
69
70     * Initial commit