Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact
Show
Ignore:
Timestamp:
11/08/09 20:13:46 (3 years ago)
Author:
kris
Message:

fixes #1303 :: x86_64 corrections for util.container

Kudos to Cyborg16

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/kris/combine/tango/util/container/model/IContainer.d

    r4008 r5064  
    2323interface IContainer (V) 
    2424{ 
    25         uint size (); 
     25        size_t size (); 
    2626 
    2727        bool isEmpty (); 
     
    4141        V[] toArray (V[] dst = null); 
    4242 
    43         uint remove (V element, bool all); 
     43        size_t remove (V element, bool all); 
    4444 
    4545        int opApply (int delegate(ref V value) dg); 
    4646 
    47         uint replace (V oldElement, V newElement, bool all); 
     47        size_t replace (V oldElement, V newElement, bool all); 
    4848} 
    4949