File: ChangeLog

package info (click to toggle)
mono-reference-assemblies 3.12.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 604,240 kB
  • ctags: 625,505
  • sloc: cs: 3,967,741; xml: 2,793,081; ansic: 418,042; java: 60,435; sh: 14,833; makefile: 11,576; sql: 7,956; perl: 1,467; cpp: 1,446; yacc: 1,203; python: 598; asm: 422; sed: 16; php: 1
file content (70 lines) | stat: -rw-r--r-- 2,092 bytes parent folder | download | duplicates (3)
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
2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>

	* HashSet.cs: Implement ISet<T> in MOONLIGHT too

2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>

	* HashSet.cs: fix and test for bug #579791.  Patch from Tiaan
	Geldenhuys.

2009-11-13  Marek Safar  <marek.safar@gmail.com>

	* HasSet.cs: Add ISet, debugger view.

2009-07-30  Raja R Harinath  <harinath@hurrynot.org>

	* HashSet.cs (Enumerator.CheckCurrent): Inline into ...
	(Enumerator.IEnumerator.Current): ... this.
	(Enumerator.IEnumerator.Reset): Check invariants.

2009-07-30  Raja R Harinath  <harinath@hurrynot.org>

	* HashSet.cs (Enumerator.next): Rename from Enumerator.current and
	change meaning to be the index of the slot to start searching on
	the next iteration.
	(Enumerator.current): New.  Contains the current element.
	(Enumerator.MoveNext): Update.  Avoid an out-of-bounds access.
	(Enumerator.Current): Don't check any invariants.

2009-07-09  Jb Evain  <jbevain@novell.com>

	* HashSet.cs (ICollection<T>.Add): fix for bug #520760. Do not throw
	when adding duplicates.

2009-01-27  Jb Evain  <jbevain@novell.com>

	* HashSet.cs: use Paolo's trick to return items in insertion order
	when possible.

2008-12-17  Jb Evain  <jbevain@novell.com>

	* HashSet.cs (CopyTo): fix logic.

2008-09-12  Jb Evain  <jbevain@novell.com>

	* HashSet.cs (.ctor (IEnumerable<T>,*)): only get the count of the
	enumerable if the source collection implements ICollection<T>, so that
	we only iterate once over the source collection.

2008-04-29  Jb Evain  <jbevain@novell.com>

	* HashSet.cs: clear empty slots to allow the GC to collect
	their values.

2007-11-30  Jb Evain  <jbevain@novell.com>

	* HashSet.cs: corcompare love.

2007-11-28  Jb Evain  <jbevain@novell.com>

	* HashSet.cs: do the ArgumentNullException dance.

2007-11-28  Jb Evain  <jbevain@novell.com>

	* HashSet.cs: start implementation of HashSet<T>, actually
	implemented as a reduction of Dictionary<K, V>. Contains
	basic set operations (that requires optimization though).

2007-08-12  Marek Safar  <marek.safar@gmail.com>

    * Initial commit