ChangeLog 5.7 KB

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