ChangeLog 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. 2005-04-29 Martin Baulig <[email protected]>
  2. Reflect latest spec changes.
  3. * IEnumerable.cs (IEnumerable<T>): Implement IEnumerable.
  4. * IEnumerator.cs (IEnumerator<T>): Implement IEnumerator.
  5. 2005-04-29 Raja R Harinath <[email protected]>
  6. Remove FIXME.
  7. * Dictionary.cs (Slot<K,V>): Move to ...
  8. (Dictionary<K,V>.Slot): ... here.
  9. 2005-04-28 Martin Baulig <[email protected]>
  10. * Dictionary.cs, Queue.cs, Stack.cs, List.cs, Comparer.cs: Don't
  11. duplicate type parameters in the nested classes.
  12. 2005-04-20 Zoltan Varga <[email protected]>
  13. * List.cs: Fix ToArray () method. Fixes #74675.
  14. 2005-04-04 Raja R Harinath <[email protected]>
  15. * Dictionary.cs: Update to draft of Feb 27. Add some argument checks.
  16. (GetSlot): Don't throw KeyNotFoundException. Unify all list
  17. traversals in here. Move found key to head of chain, and return
  18. the index of the chain suitable for/containing the key.
  19. (Item, Add, Remove): Simplify, and remove FIXMEs.
  20. (Resize): Reuse linked list nodes from old table.
  21. (Dictionary.CopyTo, HashKeyCollection.CopyTo, HashValueCollection.CopyTo):
  22. Add some argument checks.
  23. 2005-04-02 Ben Maurer <[email protected]>
  24. * Dictionary.cs: Real impl.
  25. 2005-02-21 Martin Baulig <[email protected]>
  26. * IComparer.cs: Reverted the last change here, Equals() and
  27. GetHashCode() have been removed a long time ago.
  28. 2005-02-21 Kazuki Oikawa <[email protected]>
  29. * IComparer.cs, IDictionary.cs: Corrected the wrong declaration.
  30. 2005-02-11 Carlos Alberto Cortez <[email protected]>
  31. * List.cs: Added internal ReadOnlyCollection class,
  32. which is a wrapper for a read only IList<T> version of the List<T>.
  33. Used in AsReadOnly () method.
  34. 2005-02-07 Ben Maurer <[email protected]>
  35. * List.cs (CheckRange): Comparison error. Duh!
  36. (Shift): really deal with neg. delta. Also, adjust the `size'.
  37. Based on a patch from Marc Denty ([email protected]).
  38. Fixes #72258.
  39. 2005-01-29 Ben Maurer <[email protected]>
  40. * Queue.cs: `duh' bugs.
  41. 2004-12-27 Ben Maurer <[email protected]>
  42. * Stack.cs: Stupid bug fixes.
  43. * List.cs: My new (mostly untested ;-) impl of List
  44. <T>. Implements most of the API.
  45. 2004-12-26 Ben Maurer <[email protected]>
  46. * Queue.cs: New, non-linked-list based impl.
  47. 2004-11-29 Ben Maurer <[email protected]>
  48. * Comparer.cs: Update this class.
  49. 2004-11-25 Carlos Alberto Cortez <[email protected]>
  50. * List.cs: Enumerator changed to behave like the MS impl.
  51. 2004-11-25 Ben Maurer <[email protected]>
  52. * Stack.cs: New, list based impl. Waiting for some gmcs fixes.
  53. 2004-11-10 Martin Baulig <[email protected]>
  54. * IDictionary.cs (IDictionary): `IsReadOnly' and `Clear' are
  55. inherited from ICollection.
  56. 2004-09-20 Gert Driesen <[email protected]>
  57. * ReadOnlyCollection.cs: Moved to System assembly
  58. * Collection.cs: Moved to System assembly
  59. 2004-09-07 Carlos Alberto Cortez <[email protected]>
  60. * ReadOnlyCollection.cs: New file and changes to
  61. Collection.cs tu support it.
  62. 2004-09-05 Marek Safar <[email protected]>
  63. * Dictionary.cs: Added new file (no implementation).
  64. 2004-09-03 Carlos Alberto Cortez <[email protected]>
  65. * Collection.cs: Small improvements related to
  66. style, resizing, and type checking.
  67. 2004-09-01 Carlos Alberto Cortez <[email protected]>
  68. * Collection.cs: New file.
  69. 2004-08-04 Martin Baulig <[email protected]>
  70. * List.cs (List<T>.Enumerator): Made this a struct.
  71. (List<T>.GetEnumerator): The public method now returns the
  72. `Enumerator' struct.
  73. 2004-08-02 Martin Baulig <[email protected]>
  74. Started to do some API review.
  75. * ICollection.cs (ICollection<T>): Added IsReadOnly, Add, Clear,
  76. Contains and Remove.
  77. * IList.cs (IList<T>): Removed Add, Clear, Constains, Remove,
  78. IsReadOnly and IsFixedSize.
  79. 2004-08-02 Martin Baulig <[email protected]>
  80. * IList.cs (IList.Add): Changed return type to void.
  81. * List.cs (List.Add): Likewise.
  82. 2004-07-16 Martin Baulig <[email protected]>
  83. * IComparable.cs: Removed, it's in System.
  84. 2004-07-12 Duncan Mak <[email protected]>
  85. * KeyNotFoundException.cs: Added.
  86. 2004-06-18 Ben Maurer <[email protected]>
  87. * Comparer.cs: v2 impl. Some workarounds for gmcs are enabled.
  88. 2004-05-26 Sebastien Pouliot <[email protected]>
  89. * Queue.cs: Fixed possible integer overflow in CopyTo methods.
  90. * Stack.cs: Fixed possible integer overflow in CopyTo methods.
  91. 2004-03-13 Martin Baulig <[email protected]>
  92. * Stack.cs, Queue.cs, List.cs: Implement the non-generic interfaces.
  93. 2004-03-11 Martin Baulig <[email protected]>
  94. * List.cs: New file.
  95. 2004-03-11 Martin Baulig <[email protected]>
  96. * Stack.cs, Queue.cs: Just use `Node' for the nested class, not
  97. `Node<T>' (which would create another type parameter `T'
  98. overriding `T' from the outer class).
  99. 2004-02-23 Martin Baulig <[email protected]>
  100. * Stack.cs, Queue.cs: New files. Hmm, looks like I forgot to add
  101. them to CVS; they're already on my hard disk since December or so.
  102. 2003-12-08 Martin Baulig <[email protected]>
  103. * *.cs: require GENERICS.
  104. 2003-11-08 Ben Maurer <[email protected]>
  105. * *.cs: require NET_2_0 and GENERICS
  106. 2003-11-07 Ben Maurer <[email protected]>
  107. * IComparable.cs, IComparer.cs, IDictionary.cs, IKeyComparer.cs, KeyValuePair.cs
  108. Added.
  109. 2003-11-06 Martin Baulig <[email protected]>
  110. * ICollection.cs, IList.cs, IEnumerator.cs, IEnumerable.cs:
  111. Started to implement the System.Collections.Generic classes.