Changeset 5064 for branches/kris/combine/tango/util/container/model
- Timestamp:
- 11/08/09 20:13:46 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/kris/combine/tango/util/container/model/IContainer.d
r4008 r5064 23 23 interface IContainer (V) 24 24 { 25 uint size ();25 size_t size (); 26 26 27 27 bool isEmpty (); … … 41 41 V[] toArray (V[] dst = null); 42 42 43 uint remove (V element, bool all);43 size_t remove (V element, bool all); 44 44 45 45 int opApply (int delegate(ref V value) dg); 46 46 47 uint replace (V oldElement, V newElement, bool all);47 size_t replace (V oldElement, V newElement, bool all); 48 48 } 49 49












