Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 3870

Show
Ignore:
Timestamp:
08/10/08 22:29:17 (4 months ago)
Author:
kris
Message:

deprecated old package. Please use tango.util.container instead

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/util/collection/ArrayBag.d

    r3463 r3870  
    5252**/ 
    5353 
    54 public class ArrayBag(T) : BagCollection!(T) 
     54deprecated public class ArrayBag(T) : BagCollection!(T) 
    5555{ 
    5656        alias CLCell!(T[]) CLCellT; 
  • trunk/tango/util/collection/ArraySeq.d

    r3463 r3870  
    5050**/ 
    5151 
    52 public class ArraySeq(T) : SeqCollection!(T), Sortable!(T) 
     52deprecated public class ArraySeq(T) : SeqCollection!(T), Sortable!(T) 
    5353{ 
    5454        alias SeqCollection!(T).remove     remove; 
  • trunk/tango/util/collection/CircularSeq.d

    r3463 r3870  
    2727 * author: Doug Lea 
    2828**/ 
    29 public class CircularSeq(T) : SeqCollection!(T) 
     29deprecated public class CircularSeq(T) : SeqCollection!(T) 
    3030{ 
    3131        alias CLCell!(T) CLCellT; 
  • trunk/tango/util/collection/HashMap.d

    r3463 r3870  
    4646 
    4747 
    48 public class HashMap(K, V) : MapCollection!(K, V), HashParams 
     48deprecated public class HashMap(K, V) : MapCollection!(K, V), HashParams 
    4949{ 
    5050        alias LLCell!(V)                LLCellT; 
  • trunk/tango/util/collection/HashSet.d

    r3707 r3870  
    3737**/ 
    3838 
    39 public class HashSet(T) : SetCollection!(T), HashParams 
     39deprecated public class HashSet(T) : SetCollection!(T), HashParams 
    4040{ 
    4141        private alias LLCell!(T) LLCellT; 
  • trunk/tango/util/collection/LinkMap.d

    r3463 r3870  
    3434 * author: Doug Lea 
    3535**/ 
    36 public class LinkMap(K, T) : MapCollection!(K, T) // , IReadable, IWritable 
     36deprecated public class LinkMap(K, T) : MapCollection!(K, T) // , IReadable, IWritable 
    3737{ 
    3838        alias LLCell!(T)               LLCellT; 
  • trunk/tango/util/collection/LinkSeq.d

    r3463 r3870  
    3636**/ 
    3737 
    38 public class LinkSeq(T) : SeqCollection!(T), Sortable!(T) 
     38deprecated public class LinkSeq(T) : SeqCollection!(T), Sortable!(T) 
    3939{ 
    4040        alias LLCell!(T) LLCellT; 
  • trunk/tango/util/collection/TreeBag.d

    r3463 r3870  
    3030**/ 
    3131 
    32 public class TreeBag(T) : BagCollection!(T), SortedValues!(T) 
     32deprecated public class TreeBag(T) : BagCollection!(T), SortedValues!(T) 
    3333{ 
    3434        alias RBCell!(T)        RBCellT; 
  • trunk/tango/util/collection/TreeMap.d

    r3463 r3870  
    4040 
    4141 
    42 public class TreeMap(K, T) : MapCollection!(K, T), SortedKeys!(K, T) 
     42deprecated public class TreeMap(K, T) : MapCollection!(K, T), SortedKeys!(K, T) 
    4343{ 
    4444        alias RBCell!(T)                RBCellT;