ChangeLog 4.8 KB

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