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

Changeset 3652

Show
Ignore:
Timestamp:
06/20/08 16:59:52 (3 months ago)
Author:
kris
Message:

reversed the opIn() variant

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/util/container/HashMap.d

    r3612 r3652  
    271271        ************************************************************************/ 
    272272 
    273         final V* opIn (K key) 
     273        final V* opIn_r (K key) 
    274274        { 
    275275                if (count) 
     
    530530        final V opIndex (K key) 
    531531        { 
    532                 auto p = opIn (key); 
     532                auto p = opIn_r (key); 
    533533                if (p) 
    534534                    return *p;