2420a33424eff575b828055c7d89f94c244af1b9
[libcds.git] / cds / container / impl / michael_list.h
1 //$$CDS-header$$
2
3 #ifndef __CDS_CONTAINER_IMPL_MICHAEL_LIST_H
4 #define __CDS_CONTAINER_IMPL_MICHAEL_LIST_H
5
6 #include <memory>
7 #include <cds/container/details/guarded_ptr_cast.h>
8
9 namespace cds { namespace container {
10
11     /// Michael's ordered list
12     /** @ingroup cds_nonintrusive_list
13         \anchor cds_nonintrusive_MichaelList_gc
14
15         Usually, ordered single-linked list is used as a building block for the hash table implementation.
16         The complexity of searching is <tt>O(N)</tt>, where \p N is the item count in the list, not in the
17         hash table.
18
19         Source:
20         - [2002] Maged Michael "High performance dynamic lock-free hash tables and list-based sets"
21
22         This class is non-intrusive version of cds::intrusive::MichaelList class
23
24         Template arguments:
25         - \p GC - garbage collector used
26         - \p T - type stored in the list. The type must be default- and copy-constructible.
27         - \p Traits - type traits, default is \p michael_list::traits
28
29         Unlike standard container, this implementation does not divide type \p T into key and value part and
30         may be used as a main building block for hash set algorithms.
31         The key is a function (or a part) of type \p T, and this function is specified by <tt>Traits::compare</tt> functor
32         or <tt>Traits::less</tt> predicate
33
34         MichaelKVList is a key-value version of Michael's non-intrusive list that is closer to the C++ std library approach.
35
36         It is possible to declare option-based list with cds::container::michael_list::make_traits metafunction istead of \p Traits template
37         argument. For example, the following traits-based declaration of gc::HP Michael's list
38         \code
39         #include <cds/container/michael_list_hp.h>
40         // Declare comparator for the item
41         struct my_compare {
42             int operator ()( int i1, int i2 )
43             {
44                 return i1 - i2;
45             }
46         };
47
48         // Declare traits
49         struct my_traits: public cds::container::michael_list::traits
50         {
51             typedef my_compare compare;
52         };
53
54         // Declare traits-based list
55         typedef cds::container::MichaelList< cds::gc::HP, int, my_traits >     traits_based_list;
56         \endcode
57
58         is equivalent for the following option-based list
59         \code
60         #include <cds/container/michael_list_hp.h>
61
62         // my_compare is the same
63
64         // Declare option-based list
65         typedef cds::container::MichaelList< cds::gc::HP, int,
66             typename cds::container::michael_list::make_traits<
67                 cds::container::opt::compare< my_compare >     // item comparator option
68             >::type
69         >     option_based_list;
70         \endcode
71
72         \par Usage
73         There are different specializations of this template for each garbage collecting schema used.
74         You should include appropriate .h-file depending on GC you are using:
75         - for gc::HP: \code #include <cds/container/michael_list_hp.h> \endcode
76         - for gc::DHP: \code #include <cds/container/michael_list_dhp.h> \endcode
77         - for \ref cds_urcu_desc "RCU": \code #include <cds/container/michael_list_rcu.h> \endcode
78         - for gc::nogc: \code #include <cds/container/michael_list_nogc.h> \endcode
79     */
80     template <
81         typename GC,
82         typename T,
83 #ifdef CDS_DOXYGEN_INVOKED
84         typename Traits = michael_list::traits
85 #else
86         typename Traits
87 #endif
88     >
89     class MichaelList:
90 #ifdef CDS_DOXYGEN_INVOKED
91         protected intrusive::MichaelList< GC, T, Traits >
92 #else
93         protected details::make_michael_list< GC, T, Traits >::type
94 #endif
95     {
96         //@cond
97         typedef details::make_michael_list< GC, T, Traits > maker;
98         typedef typename maker::type base_class;
99         //@endcond
100
101     public:
102         typedef T value_type;   ///< Type of value stored in the list
103         typedef Traits traits;  ///< List traits
104
105         typedef typename base_class::gc             gc;             ///< Garbage collector used
106         typedef typename base_class::back_off       back_off;       ///< Back-off strategy used
107         typedef typename maker::allocator_type      allocator_type; ///< Allocator type used for allocate/deallocate the nodes
108         typedef typename base_class::item_counter   item_counter;   ///< Item counting policy used
109         typedef typename maker::key_comparator      key_comparator; ///< key comparison functor
110         typedef typename base_class::memory_model   memory_model;   ///< Memory ordering. See \p cds::opt::memory_model option
111
112     protected:
113         //@cond
114         typedef typename base_class::value_type      node_type;
115         typedef typename maker::cxx_allocator        cxx_allocator;
116         typedef typename maker::node_deallocator     node_deallocator;
117         typedef typename maker::intrusive_traits::compare intrusive_key_comparator;
118
119         typedef typename base_class::atomic_node_ptr head_type;
120         //@endcond
121
122     public:
123         /// Guarded pointer
124         typedef typename gc::template guarded_ptr< node_type, value_type, details::guarded_ptr_cast_set<node_type, value_type> > guarded_ptr;
125
126     private:
127         //@cond
128         static value_type& node_to_value( node_type& n )
129         {
130             return n.m_Value;
131         }
132         static value_type const& node_to_value( node_type const& n )
133         {
134             return n.m_Value;
135         }
136         //@endcond
137
138     protected:
139         //@cond
140         template <typename Q>
141         static node_type * alloc_node( Q const& v )
142         {
143             return cxx_allocator().New( v );
144         }
145
146         template <typename... Args>
147         static node_type * alloc_node( Args&&... args )
148         {
149             return cxx_allocator().MoveNew( std::forward<Args>(args)... );
150         }
151
152         static void free_node( node_type * pNode )
153         {
154             cxx_allocator().Delete( pNode );
155         }
156
157         struct node_disposer {
158             void operator()( node_type * pNode )
159             {
160                 free_node( pNode );
161             }
162         };
163         typedef std::unique_ptr< node_type, node_disposer > scoped_node_ptr;
164
165         head_type& head()
166         {
167             return base_class::m_pHead;
168         }
169
170         head_type const& head() const
171         {
172             return base_class::m_pHead;
173         }
174         //@endcond
175
176     protected:
177         //@cond
178         template <bool IsConst>
179         class iterator_type: protected base_class::template iterator_type<IsConst>
180         {
181             typedef typename base_class::template iterator_type<IsConst>    iterator_base;
182
183             iterator_type( head_type const& pNode )
184                 : iterator_base( pNode )
185             {}
186
187             friend class MichaelList;
188
189         public:
190             typedef typename cds::details::make_const_type<value_type, IsConst>::pointer   value_ptr;
191             typedef typename cds::details::make_const_type<value_type, IsConst>::reference value_ref;
192
193             iterator_type()
194             {}
195
196             iterator_type( iterator_type const& src )
197                 : iterator_base( src )
198             {}
199
200             value_ptr operator ->() const
201             {
202                 typename iterator_base::value_ptr p = iterator_base::operator ->();
203                 return p ? &(p->m_Value) : nullptr;
204             }
205
206             value_ref operator *() const
207             {
208                 return (iterator_base::operator *()).m_Value;
209             }
210
211             /// Pre-increment
212             iterator_type& operator ++()
213             {
214                 iterator_base::operator ++();
215                 return *this;
216             }
217
218             template <bool C>
219             bool operator ==(iterator_type<C> const& i ) const
220             {
221                 return iterator_base::operator ==(i);
222             }
223             template <bool C>
224             bool operator !=(iterator_type<C> const& i ) const
225             {
226                 return iterator_base::operator !=(i);
227             }
228         };
229         //@endcond
230
231     public:
232         /// Forward iterator
233         /**
234             The forward iterator for Michael's list has some features:
235             - it has no post-increment operator
236             - to protect the value, the iterator contains a GC-specific guard + another guard is required locally for increment operator.
237               For some GC (\p gc::HP), a guard is limited resource per thread, so an exception (or assertion) "no free guard"
238               may be thrown if a limit of guard count per thread is exceeded.
239             - The iterator cannot be moved across thread boundary since it contains GC's guard that is thread-private GC data.
240             - Iterator ensures thread-safety even if you delete the item that iterator points to. However, in case of concurrent
241               deleting operations it is no guarantee that you iterate all item in the list.
242
243             Therefore, the use of iterators in concurrent environment is not good idea. Use the iterator on the concurrent container
244             for debug purpose only.
245         */
246         typedef iterator_type<false>    iterator;
247
248         /// Const forward iterator
249         /**
250             For iterator's features and requirements see \ref iterator
251         */
252         typedef iterator_type<true>     const_iterator;
253
254         /// Returns a forward iterator addressing the first element in a list
255         /**
256             For empty list \code begin() == end() \endcode
257         */
258         iterator begin()
259         {
260             return iterator( head() );
261         }
262
263         /// Returns an iterator that addresses the location succeeding the last element in a list
264         /**
265             Do not use the value returned by <tt>end</tt> function to access any item.
266             Internally, <tt>end</tt> returning value equals to \p nullptr.
267
268             The returned value can be used only to control reaching the end of the list.
269             For empty list \code begin() == end() \endcode
270         */
271         iterator end()
272         {
273             return iterator();
274         }
275
276         /// Returns a forward const iterator addressing the first element in a list
277         //@{
278         const_iterator begin() const
279         {
280             return const_iterator( head() );
281         }
282         const_iterator cbegin() const
283         {
284             return const_iterator( head() );
285         }
286         //@}
287
288         /// Returns an const iterator that addresses the location succeeding the last element in a list
289         //@{
290         const_iterator end() const
291         {
292             return const_iterator();
293         }
294         const_iterator cend() const
295         {
296             return const_iterator();
297         }
298         //@}
299
300     public:
301         /// Default constructor
302         /**
303             Initialize empty list
304         */
305         MichaelList()
306         {}
307
308         /// List destructor
309         /**
310             Clears the list
311         */
312         ~MichaelList()
313         {
314             clear();
315         }
316
317         /// Inserts new node
318         /**
319             The function creates a node with copy of \p val value
320             and then inserts the node created into the list.
321
322             The type \p Q should contain least the complete key of the node.
323             The object of \ref value_type should be constructible from \p val of type \p Q.
324             In trivial case, \p Q is equal to \ref value_type.
325
326             Returns \p true if inserting successful, \p false otherwise.
327         */
328         template <typename Q>
329         bool insert( Q const& val )
330         {
331             return insert_at( head(), val );
332         }
333
334         /// Inserts new node
335         /**
336             This function inserts new node with default-constructed value and then it calls
337             \p func functor with signature
338             \code void func( value_type& itemValue ) ;\endcode
339
340             The argument \p itemValue of user-defined functor \p func is the reference
341             to the list's item inserted. User-defined functor \p func should guarantee that during changing
342             item's value no any other changes could be made on this list's item by concurrent threads.
343             The user-defined functor is called only if inserting is success.
344
345             The type \p Q should contain the complete key of the node.
346             The object of \p value_type should be constructible from \p key of type \p Q.
347
348             The function allows to split creating of new item into two part:
349             - create item from \p key with initializing key-fields only;
350             - insert new item into the list;
351             - if inserting is successful, initialize non-key fields of item by calling \p func functor
352
353             The method can be useful if complete initialization of object of \p value_type is heavyweight and
354             it is preferable that the initialization should be completed only if inserting is successful.
355
356             @warning See \ref cds_intrusive_item_creating "insert item troubleshooting"
357         */
358         template <typename Q, typename Func>
359         bool insert( Q const& key, Func func )
360         {
361             return insert_at( head(), key, func );
362         }
363
364         /// Ensures that the \p key exists in the list
365         /**
366             The operation performs inserting or changing data with lock-free manner.
367
368             If the \p key not found in the list, then the new item created from \p key
369             is inserted into the list. Otherwise, the functor \p func is called with the item found.
370             The functor \p Func should be a function with signature:
371             \code
372                 void func( bool bNew, value_type& item, const Q& val );
373             \endcode
374             or a functor:
375             \code
376                 struct my_functor {
377                     void operator()( bool bNew, value_type& item, const Q& val );
378                 };
379             \endcode
380
381             with arguments:
382             - \p bNew - \p true if the item has been inserted, \p false otherwise
383             - \p item - item of the list
384             - \p val - argument \p key passed into the \p ensure function
385
386             The functor may change non-key fields of the \p item; however, \p func must guarantee
387             that during changing no any other modifications could be made on this item by concurrent threads.
388
389             Returns <tt> std::pair<bool, bool> </tt> where \p first is true if operation is successfull,
390             \p second is true if new item has been added or \p false if the item with \p key
391             already is in the list.
392
393             @warning See \ref cds_intrusive_item_creating "insert item troubleshooting"
394         */
395         template <typename Q, typename Func>
396         std::pair<bool, bool> ensure( Q const& key, Func func )
397         {
398             return ensure_at( head(), key, func );
399         }
400
401         /// Inserts data of type \p value_type constructed with <tt>std::forward<Args>(args)...</tt>
402         /**
403             Returns \p true if inserting successful, \p false otherwise.
404         */
405         template <typename... Args>
406         bool emplace( Args&&... args )
407         {
408             return emplace_at( head(), std::forward<Args>(args)... );
409         }
410
411         /// Delete \p key from the list
412         /** \anchor cds_nonintrusive_MichealList_hp_erase_val
413             Since the key of MichaelList's item type \p value_type is not explicitly specified,
414             template parameter \p Q sould contain the complete key to search in the list.
415             The list item comparator should be able to compare the type \p value_type
416             and the type \p Q.
417
418             Return \p true if key is found and deleted, \p false otherwise
419         */
420         template <typename Q>
421         bool erase( Q const& key )
422         {
423             return erase_at( head(), key, intrusive_key_comparator(), [](value_type const&){} );
424         }
425
426         /// Deletes the item from the list using \p pred predicate for searching
427         /**
428             The function is an analog of \ref cds_nonintrusive_MichealList_hp_erase_val "erase(Q const&)"
429             but \p pred is used for key comparing.
430             \p Less functor has the interface like \p std::less.
431             \p pred must imply the same element order as the comparator used for building the list.
432         */
433         template <typename Q, typename Less>
434         bool erase_with( Q const& key, Less pred )
435         {
436             CDS_UNUSED( pred );
437             return erase_at( head(), key, typename maker::template less_wrapper<Less>::type(), [](value_type const&){} );
438         }
439
440         /// Deletes \p key from the list
441         /** \anchor cds_nonintrusive_MichaelList_hp_erase_func
442             The function searches an item with key \p key, calls \p f functor with item found
443             and deletes it. If \p key is not found, the functor is not called.
444
445             The functor \p Func interface:
446             \code
447             struct extractor {
448                 void operator()(const value_type& val) { ... }
449             };
450             \endcode
451
452             Since the key of MichaelList's item type \p value_type is not explicitly specified,
453             template parameter \p Q should contain the complete key to search in the list.
454             The list item comparator should be able to compare the type \p value_type of list item
455             and the type \p Q.
456
457             Return \p true if key is found and deleted, \p false otherwise
458         */
459         template <typename Q, typename Func>
460         bool erase( Q const& key, Func f )
461         {
462             return erase_at( head(), key, intrusive_key_comparator(), f );
463         }
464
465         /// Deletes the item from the list using \p pred predicate for searching
466         /**
467             The function is an analog of \ref cds_nonintrusive_MichaelList_hp_erase_func "erase(Q const&, Func)"
468             but \p pred is used for key comparing.
469             \p Less functor has the interface like \p std::less.
470             \p pred must imply the same element order as the comparator used for building the list.
471         */
472         template <typename Q, typename Less, typename Func>
473         bool erase_with( Q const& key, Less pred, Func f )
474         {
475             CDS_UNUSED( pred );
476             return erase_at( head(), key, typename maker::template less_wrapper<Less>::type(), f );
477         }
478
479         /// Extracts the item from the list with specified \p key
480         /** \anchor cds_nonintrusive_MichaelList_hp_extract
481             The function searches an item with key equal to \p key,
482             unlinks it from the list, and returns it as \p guarded_ptr.
483             If \p key is not found the function returns an empty guarded pointer.
484
485             Note the compare functor should accept a parameter of type \p Q that can be not the same as \p value_type.
486
487             @note Each \p guarded_ptr object uses the GC's guard that can be limited resource.
488
489             Usage:
490             \code
491             typedef cds::container::MichaelList< cds::gc::HP, foo, my_traits >  ord_list;
492             ord_list theList;
493             // ...
494             {
495                 ord_list::guarded_ptr gp(theList.extract( 5 ));
496                 if ( gp ) {
497                     // Deal with gp
498                     // ...
499                 }
500                 // Destructor of gp releases internal HP guard and frees the item
501             }
502             \endcode
503         */
504         template <typename Q>
505         guarded_ptr extract( Q const& key )
506         {
507             guarded_ptr gp;
508             extract_at( head(), gp.guard(), key, intrusive_key_comparator() );
509             return gp;
510         }
511
512         /// Extracts the item from the list with comparing functor \p pred
513         /**
514             The function is an analog of \ref cds_nonintrusive_MichaelList_hp_extract "extract(Q const&)"
515             but \p pred predicate is used for key comparing.
516
517             \p Less functor has the semantics like \p std::less but it should accept arguments of type \p value_type and \p Q
518             in any order.
519             \p pred must imply the same element order as the comparator used for building the list.
520         */
521         template <typename Q, typename Less>
522         guarded_ptr extract_with( Q const& key, Less pred )
523         {
524             CDS_UNUSED( pred );
525             guarded_ptr gp;
526             extract_at( head(), gp.guard(), key, typename maker::template less_wrapper<Less>::type() );
527             return gp;
528         }
529
530         /// Finds \p key
531         /** \anchor cds_nonintrusive_MichaelList_hp_find_val
532             The function searches the item with key equal to \p key
533             and returns \p true if it is found, and \p false otherwise
534         */
535         template <typename Q>
536         bool find( Q const& key )
537         {
538             return find_at( head(), key, intrusive_key_comparator() );
539         }
540
541         /// Finds \p key using \p pred predicate for searching
542         /**
543             The function is an analog of \ref cds_nonintrusive_MichaelList_hp_find_val "find(Q const&)"
544             but \p pred is used for key comparing.
545             \p Less functor has the interface like \p std::less.
546             \p pred must imply the same element order as the comparator used for building the list.
547         */
548         template <typename Q, typename Less>
549         bool find_with( Q const& key, Less pred )
550         {
551             CDS_UNUSED( pred );
552             return find_at( head(), key, typename maker::template less_wrapper<Less>::type() );
553         }
554
555         /// Finds \p key and perform an action with it
556         /** \anchor cds_nonintrusive_MichaelList_hp_find_func
557             The function searches an item with key equal to \p key and calls the functor \p f for the item found.
558             The interface of \p Func functor is:
559             \code
560             struct functor {
561                 void operator()( value_type& item, Q& key );
562             };
563             \endcode
564             where \p item is the item found, \p key is the <tt>find</tt> function argument.
565
566             The functor may change non-key fields of \p item. Note that the function is only guarantee
567             that \p item cannot be deleted during functor is executing.
568             The function does not serialize simultaneous access to the list \p item. If such access is
569             possible you must provide your own synchronization schema to exclude unsafe item modifications.
570
571             The function returns \p true if \p key is found, \p false otherwise.
572         */
573         template <typename Q, typename Func>
574         bool find( Q& key, Func f )
575         {
576             return find_at( head(), key, intrusive_key_comparator(), f );
577         }
578         //@cond
579         template <typename Q, typename Func>
580         bool find( Q const& key, Func f )
581         {
582             return find_at( head(), key, intrusive_key_comparator(), f );
583         }
584         //@endcond
585
586         /// Finds \p key using \p pred predicate for searching
587         /**
588             The function is an analog of \ref cds_nonintrusive_MichaelList_hp_find_func "find(Q&, Func)"
589             but \p pred is used for key comparing.
590             \p Less functor has the interface like \p std::less.
591             \p pred must imply the same element order as the comparator used for building the list.
592         */
593         template <typename Q, typename Less, typename Func>
594         bool find_with( Q& key, Less pred, Func f )
595         {
596             CDS_UNUSED( pred );
597             return find_at( head(), key, typename maker::template less_wrapper<Less>::type(), f );
598         }
599         //@cond
600         template <typename Q, typename Less, typename Func>
601         bool find_with( Q const& key, Less pred, Func f )
602         {
603             CDS_UNUSED( pred );
604             return find_at( head(), key, typename maker::template less_wrapper<Less>::type(), f );
605         }
606         //@endcond
607
608         /// Finds \p key and return the item found
609         /** \anchor cds_nonintrusive_MichaelList_hp_get
610             The function searches the item with key equal to \p key
611             and returns it as \p guarded_ptr.
612             If \p key is not found the function returns an empty guarded pointer.
613
614             @note Each \p guarded_ptr object uses one GC's guard which can be limited resource.
615
616             Usage:
617             \code
618             typedef cds::container::MichaelList< cds::gc::HP, foo, my_traits >  ord_list;
619             ord_list theList;
620             // ...
621             {
622                 ord_list::guarded_ptr gp(theList.get( 5 ));
623                 if ( gp ) {
624                     // Deal with gp
625                     //...
626                 }
627                 // Destructor of guarded_ptr releases internal HP guard and frees the item
628             }
629             \endcode
630
631             Note the compare functor specified for class \p Traits template parameter
632             should accept a parameter of type \p Q that can be not the same as \p value_type.
633         */
634         template <typename Q>
635         guarded_ptr get( Q const& key )
636         {
637             guarded_ptr gp;
638             get_at( head(), gp.guard(), key, intrusive_key_comparator() );
639             return gp;
640         }
641
642         /// Finds \p key and return the item found
643         /**
644             The function is an analog of \ref cds_nonintrusive_MichaelList_hp_get "get( Q const&)"
645             but \p pred is used for comparing the keys.
646
647             \p Less functor has the semantics like \p std::less but should accept arguments of type \p value_type and \p Q
648             in any order.
649             \p pred must imply the same element order as the comparator used for building the list.
650         */
651         template <typename Q, typename Less>
652         guarded_ptr get_with( Q const& key, Less pred )
653         {
654             CDS_UNUSED( pred );
655             guarded_ptr gp;
656             get_at( head(), gp.guard(), key, typename maker::template less_wrapper<Less>::type() );
657             return gp;
658         }
659
660         /// Check if the list is empty
661         bool empty() const
662         {
663             return base_class::empty();
664         }
665
666         /// Returns list's item count
667         /**
668             The value returned depends on item counter provided by \p Traits. For \p atomicity::empty_item_counter,
669             this function always returns 0.
670
671             @note Even if you use real item counter and it returns 0, this fact is not mean that the list
672             is empty. To check list emptyness use \p empty() method.
673         */
674         size_t size() const
675         {
676             return base_class::size();
677         }
678
679         /// Clears the list
680         void clear()
681         {
682             base_class::clear();
683         }
684
685     protected:
686         //@cond
687         bool insert_node_at( head_type& refHead, node_type * pNode )
688         {
689             assert( pNode );
690             scoped_node_ptr p(pNode);
691             if ( base_class::insert_at( refHead, *pNode )) {
692                 p.release();
693                 return true;
694             }
695
696             return false;
697         }
698
699         template <typename Q>
700         bool insert_at( head_type& refHead, Q const& val )
701         {
702             return insert_node_at( refHead, alloc_node( val ));
703         }
704
705         template <typename Q, typename Func>
706         bool insert_at( head_type& refHead, Q const& key, Func f )
707         {
708             scoped_node_ptr pNode( alloc_node( key ));
709
710             if ( base_class::insert_at( refHead, *pNode, [&f]( node_type& node ) { f( node_to_value(node) ); } )) {
711                 pNode.release();
712                 return true;
713             }
714             return false;
715         }
716
717         template <typename... Args>
718         bool emplace_at( head_type& refHead, Args&&... args )
719         {
720             return insert_node_at( refHead, alloc_node( std::forward<Args>(args) ... ));
721         }
722
723         template <typename Q, typename Compare, typename Func>
724         bool erase_at( head_type& refHead, Q const& key, Compare cmp, Func f )
725         {
726             return base_class::erase_at( refHead, key, cmp, [&f](node_type const& node){ f( node_to_value(node) ); } );
727         }
728
729         template <typename Q, typename Compare>
730         bool extract_at( head_type& refHead, typename guarded_ptr::native_guard& guard, Q const& key, Compare cmp )
731         {
732             return base_class::extract_at( refHead, guard, key, cmp );
733         }
734
735         template <typename Q, typename Func>
736         std::pair<bool, bool> ensure_at( head_type& refHead, Q const& key, Func f )
737         {
738             scoped_node_ptr pNode( alloc_node( key ));
739
740             std::pair<bool, bool> ret = base_class::ensure_at( refHead, *pNode,
741                 [&f, &key](bool bNew, node_type& node, node_type&){ f( bNew, node_to_value(node), key ); });
742             if ( ret.first && ret.second )
743                 pNode.release();
744
745             return ret;
746         }
747
748         template <typename Q, typename Compare>
749         bool find_at( head_type& refHead, Q const& key, Compare cmp )
750         {
751             return base_class::find_at( refHead, key, cmp );
752         }
753
754         template <typename Q, typename Compare, typename Func>
755         bool find_at( head_type& refHead, Q& val, Compare cmp, Func f )
756         {
757             return base_class::find_at( refHead, val, cmp, [&f](node_type& node, Q& v){ f( node_to_value(node), v ); });
758         }
759
760         template <typename Q, typename Compare>
761         bool get_at( head_type& refHead, typename guarded_ptr::native_guard& guard, Q const& key, Compare cmp )
762         {
763             return base_class::get_at( refHead, guard, key, cmp );
764         }
765
766         //@endcond
767     };
768
769 }}  // namespace cds::container
770
771 #endif  // #ifndef __CDS_CONTAINER_IMPL_MICHAEL_LIST_H