Changes between Version 2 and Version 3 of 2010CaoTme4


Ignore:
Timestamp:
Apr 1, 2010, 5:41:31 PM (15 years ago)
Author:
jpc
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • 2010CaoTme4

    v2 v3  
    162162   et sera associée à une unique valeur.
    163163
    164  * On peut retrouver très efficacement une valeur en fonction d'une clé.
     164 * On peut retrouver très rapidement une valeur en fonction d'une clé.
    165165
    166166 * N'importe quel  objet (classe) peut  servir de clé  ''sous réserve'' de  disposer d'une
     
    175175if ( lhs->_index != rhs->_index ) return lhs->_index < rhs->_index;
    176176
    177 if ( lhs->_high->getIndex() != rhs->_high->getIndex() )
    178   return lhs->_high->getIndex() < rhs->_high->getIndex();
    179 
    180 return lhs->_low->getIndex() < rhs->_low->getIndex();
    181 }}}
    182 
     177if ( lhs->_highIndex != rhs->_highIndex )
     178  return lhs->_highIndex < rhs->_highIndex;
     179
     180return lhs->_lowIndex < rhs->_lowIndex;
     181}}}
    183182
    184183