| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- 2005-04-04 Raja R Harinath <[email protected]>
- * Dictionary.cs: Update to draft of Feb 27. Add some argument checks.
- (GetSlot): Don't throw KeyNotFoundException. Unify all list
- traversals in here. Move found key to head of chain, and return
- the index of the chain suitable for/containing the key.
- (Item, Add, Remove): Simplify, and remove FIXMEs.
- (Resize): Reuse linked list nodes from old table.
- (Dictionary.CopyTo, HashKeyCollection.CopyTo, HashValueCollection.CopyTo):
- Add some argument checks.
- 2005-04-02 Ben Maurer <[email protected]>
- * Dictionary.cs: Real impl.
- 2005-02-21 Martin Baulig <[email protected]>
- * IComparer.cs: Reverted the last change here, Equals() and
- GetHashCode() have been removed a long time ago.
- 2005-02-21 Kazuki Oikawa <[email protected]>
- * IComparer.cs, IDictionary.cs: Corrected the wrong declaration.
- 2005-02-11 Carlos Alberto Cortez <[email protected]>
- * List.cs: Added internal ReadOnlyCollection class,
- which is a wrapper for a read only IList<T> version of the List<T>.
- Used in AsReadOnly () method.
-
- 2005-02-07 Ben Maurer <[email protected]>
- * List.cs (CheckRange): Comparison error. Duh!
- (Shift): really deal with neg. delta. Also, adjust the `size'.
- Based on a patch from Marc Denty ([email protected]).
- Fixes #72258.
- 2005-01-29 Ben Maurer <[email protected]>
- * Queue.cs: `duh' bugs.
- 2004-12-27 Ben Maurer <[email protected]>
- * Stack.cs: Stupid bug fixes.
- * List.cs: My new (mostly untested ;-) impl of List
- <T>. Implements most of the API.
- 2004-12-26 Ben Maurer <[email protected]>
- * Queue.cs: New, non-linked-list based impl.
- 2004-11-29 Ben Maurer <[email protected]>
- * Comparer.cs: Update this class.
- 2004-11-25 Carlos Alberto Cortez <[email protected]>
- * List.cs: Enumerator changed to behave like the MS impl.
-
- 2004-11-25 Ben Maurer <[email protected]>
- * Stack.cs: New, list based impl. Waiting for some gmcs fixes.
- 2004-11-10 Martin Baulig <[email protected]>
- * IDictionary.cs (IDictionary): `IsReadOnly' and `Clear' are
- inherited from ICollection.
- 2004-09-20 Gert Driesen <[email protected]>
- * ReadOnlyCollection.cs: Moved to System assembly
- * Collection.cs: Moved to System assembly
- 2004-09-07 Carlos Alberto Cortez <[email protected]>
- * ReadOnlyCollection.cs: New file and changes to
- Collection.cs tu support it.
- 2004-09-05 Marek Safar <[email protected]>
- * Dictionary.cs: Added new file (no implementation).
- 2004-09-03 Carlos Alberto Cortez <[email protected]>
- * Collection.cs: Small improvements related to
- style, resizing, and type checking.
- 2004-09-01 Carlos Alberto Cortez <[email protected]>
- * Collection.cs: New file.
- 2004-08-04 Martin Baulig <[email protected]>
- * List.cs (List<T>.Enumerator): Made this a struct.
- (List<T>.GetEnumerator): The public method now returns the
- `Enumerator' struct.
- 2004-08-02 Martin Baulig <[email protected]>
- Started to do some API review.
- * ICollection.cs (ICollection<T>): Added IsReadOnly, Add, Clear,
- Contains and Remove.
- * IList.cs (IList<T>): Removed Add, Clear, Constains, Remove,
- IsReadOnly and IsFixedSize.
- 2004-08-02 Martin Baulig <[email protected]>
- * IList.cs (IList.Add): Changed return type to void.
- * List.cs (List.Add): Likewise.
- 2004-07-16 Martin Baulig <[email protected]>
- * IComparable.cs: Removed, it's in System.
- 2004-07-12 Duncan Mak <[email protected]>
- * KeyNotFoundException.cs: Added.
- 2004-06-18 Ben Maurer <[email protected]>
- * Comparer.cs: v2 impl. Some workarounds for gmcs are enabled.
- 2004-05-26 Sebastien Pouliot <[email protected]>
- * Queue.cs: Fixed possible integer overflow in CopyTo methods.
- * Stack.cs: Fixed possible integer overflow in CopyTo methods.
- 2004-03-13 Martin Baulig <[email protected]>
- * Stack.cs, Queue.cs, List.cs: Implement the non-generic interfaces.
- 2004-03-11 Martin Baulig <[email protected]>
- * List.cs: New file.
- 2004-03-11 Martin Baulig <[email protected]>
- * Stack.cs, Queue.cs: Just use `Node' for the nested class, not
- `Node<T>' (which would create another type parameter `T'
- overriding `T' from the outer class).
- 2004-02-23 Martin Baulig <[email protected]>
- * Stack.cs, Queue.cs: New files. Hmm, looks like I forgot to add
- them to CVS; they're already on my hard disk since December or so.
- 2003-12-08 Martin Baulig <[email protected]>
- * *.cs: require GENERICS.
- 2003-11-08 Ben Maurer <[email protected]>
- * *.cs: require NET_2_0 and GENERICS
- 2003-11-07 Ben Maurer <[email protected]>
- * IComparable.cs, IComparer.cs, IDictionary.cs, IKeyComparer.cs, KeyValuePair.cs
- Added.
- 2003-11-06 Martin Baulig <[email protected]>
- * ICollection.cs, IList.cs, IEnumerator.cs, IEnumerable.cs:
- Started to implement the System.Collections.Generic classes.
|