Lines Matching full:value
29 template<typename Value, typename HashFunctions, typename Traits> class HashSet;
30 template<typename Value, typename HashFunctions, typename Traits>
31 void deleteAllValues(const HashSet<Value, HashFunctions, Traits>&);
32 template<typename Value, typename HashFunctions, typename Traits>
33 void fastDeleteAllValues(const HashSet<Value, HashFunctions, Traits>&);
78 // The return value is a pair of an interator to the new value's location,
164 inline typename HashSet<T, U, V>::iterator HashSet<T, U, V>::find(const ValueType& value)
166 return m_impl.find(value);
170 inline typename HashSet<T, U, V>::const_iterator HashSet<T, U, V>::find(const ValueType& value) const
172 return m_impl.find(value);
176 inline bool HashSet<T, U, V>::contains(const ValueType& value) const
178 return m_impl.contains(value);
181 template<typename Value, typename HashFunctions, typename Traits>
183 typename HashSet<Value, HashFunctions, Traits>::iterator
184 inline HashSet<Value, HashFunctions, Traits>::find(const T& value)
187 return m_impl.template find<T, Adapter>(value);
190 template<typename Value, typename HashFunctions, typename Traits>
192 typename HashSet<Value, HashFunctions, Traits>::const_iterator
193 inline HashSet<Value, HashFunctions, Traits>::find(const T& value) const
196 return m_impl.template find<T, Adapter>(value);
199 template<typename Value, typename HashFunctions, typename Traits>
201 inline bool HashSet<Value, HashFunctions, Traits>::contains(const T& value) const
204 return m_impl.template contains<T, Adapter>(value);
208 pair<typename HashSet<T, U, V>::iterator, bool> HashSet<T, U, V>::add(const ValueType& value)
210 return m_impl.add(value);
213 template<typename Value, typename HashFunctions, typename Traits>
215 pair<typename HashSet<Value, HashFunctions, Traits>::iterator, bool>
216 HashSet<Value, HashFunctions, Traits>::add(const T& value)
219 return m_impl.template addPassingHashCode<T, T, Adapter>(value, value);
232 inline void HashSet<T, U, V>::remove(const ValueType& value)
234 remove(find(value));