Ejemplo n.º 1
0
 /** Sets the value of the empty key.
  *   
  *  @param value the value value that will be used to identify empty items.
  */
 void set_empty_key( const value_type& value )
 {
     m_ht.set_empty_value( value );
 }
Ejemplo n.º 2
0
 /** Sets the value of the empty key.
  *
  *  @param key the key value that will be used to identify empty items.
  */
 void set_empty_key( const key_type& key )
 {
     m_ht.set_empty_value( value_type( key, data_type() ) );
 }