/** 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 ); }
/** 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() ) ); }