Remove unused vars
[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 cds::gc::guarded_ptr< gc, 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 in \p dest parameter.
483             If the item with key equal to \p key is not found the function returns \p false.
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;
496                 theList.extract( gp, 5 );
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         bool extract( guarded_ptr& dest, Q const& key )
506         {
507             return extract_at( head(), dest.guard(), key, intrusive_key_comparator() );
508         }
509
510         /// Extracts the item from the list with comparing functor \p pred
511         /**
512             The function is an analog of \ref cds_nonintrusive_MichaelList_hp_extract "extract(guarded_ptr&, Q const&)"
513             but \p pred predicate is used for key comparing.
514
515             \p Less functor has the semantics like \p std::less but it should accept arguments of type \p value_type and \p Q
516             in any order.
517             \p pred must imply the same element order as the comparator used for building the list.
518         */
519         template <typename Q, typename Less>
520         bool extract_with( guarded_ptr& dest, Q const& key, Less pred )
521         {
522             CDS_UNUSED( pred );
523             return extract_at( head(), dest.guard(), key, typename maker::template less_wrapper<Less>::type() );
524         }
525
526         /// Finds \p key
527         /** \anchor cds_nonintrusive_MichaelList_hp_find_val
528             The function searches the item with key equal to \p key
529             and returns \p true if it is found, and \p false otherwise
530         */
531         template <typename Q>
532         bool find( Q const& key )
533         {
534             return find_at( head(), key, intrusive_key_comparator() );
535         }
536
537         /// Finds \p key using \p pred predicate for searching
538         /**
539             The function is an analog of \ref cds_nonintrusive_MichaelList_hp_find_val "find(Q const&)"
540             but \p pred is used for key comparing.
541             \p Less functor has the interface like \p std::less.
542             \p pred must imply the same element order as the comparator used for building the list.
543         */
544         template <typename Q, typename Less>
545         bool find_with( Q const& key, Less pred )
546         {
547             CDS_UNUSED( pred );
548             return find_at( head(), key, typename maker::template less_wrapper<Less>::type() );
549         }
550
551         /// Finds \p key and perform an action with it
552         /** \anchor cds_nonintrusive_MichaelList_hp_find_func
553             The function searches an item with key equal to \p key and calls the functor \p f for the item found.
554             The interface of \p Func functor is:
555             \code
556             struct functor {
557                 void operator()( value_type& item, Q& key );
558             };
559             \endcode
560             where \p item is the item found, \p key is the <tt>find</tt> function argument.
561
562             The functor may change non-key fields of \p item. Note that the function is only guarantee
563             that \p item cannot be deleted during functor is executing.
564             The function does not serialize simultaneous access to the list \p item. If such access is
565             possible you must provide your own synchronization schema to exclude unsafe item modifications.
566
567             The function returns \p true if \p key is found, \p false otherwise.
568         */
569         template <typename Q, typename Func>
570         bool find( Q& key, Func f )
571         {
572             return find_at( head(), key, intrusive_key_comparator(), f );
573         }
574         //@cond
575         template <typename Q, typename Func>
576         bool find( Q const& key, Func f )
577         {
578             return find_at( head(), key, intrusive_key_comparator(), f );
579         }
580         //@endcond
581
582         /// Finds \p key using \p pred predicate for searching
583         /**
584             The function is an analog of \ref cds_nonintrusive_MichaelList_hp_find_func "find(Q&, Func)"
585             but \p pred is used for key comparing.
586             \p Less functor has the interface like \p std::less.
587             \p pred must imply the same element order as the comparator used for building the list.
588         */
589         template <typename Q, typename Less, typename Func>
590         bool find_with( Q& key, Less pred, Func f )
591         {
592             CDS_UNUSED( pred );
593             return find_at( head(), key, typename maker::template less_wrapper<Less>::type(), f );
594         }
595         //@cond
596         template <typename Q, typename Less, typename Func>
597         bool find_with( Q const& key, Less pred, Func f )
598         {
599             CDS_UNUSED( pred );
600             return find_at( head(), key, typename maker::template less_wrapper<Less>::type(), f );
601         }
602         //@endcond
603
604         /// Finds \p key and return the item found
605         /** \anchor cds_nonintrusive_MichaelList_hp_get
606             The function searches the item with key equal to \p key
607             and assigns the item found to guarded pointer \p ptr.
608             The function returns \p true if \p key is found, and \p false otherwise.
609             If \p key is not found the \p ptr parameter is not changed.
610
611             @note Each \p guarded_ptr object uses one GC's guard which can be limited resource.
612
613             Usage:
614             \code
615             typedef cds::container::MichaelList< cds::gc::HP, foo, my_traits >  ord_list;
616             ord_list theList;
617             // ...
618             {
619                 ord_list::guarded_ptr gp;
620                 if ( theList.get( gp, 5 )) {
621                     // Deal with gp
622                     //...
623                 }
624                 // Destructor of guarded_ptr releases internal HP guard and frees the item
625             }
626             \endcode
627
628             Note the compare functor specified for class \p Traits template parameter
629             should accept a parameter of type \p Q that can be not the same as \p value_type.
630         */
631         template <typename Q>
632         bool get( guarded_ptr& ptr, Q const& key )
633         {
634             return get_at( head(), ptr.guard(), key, intrusive_key_comparator() );
635         }
636
637         /// Finds \p key and return the item found
638         /**
639             The function is an analog of \ref cds_nonintrusive_MichaelList_hp_get "get( guarded_ptr& ptr, Q const&)"
640             but \p pred is used for comparing the keys.
641
642             \p Less functor has the semantics like \p std::less but should accept arguments of type \p value_type and \p Q
643             in any order.
644             \p pred must imply the same element order as the comparator used for building the list.
645         */
646         template <typename Q, typename Less>
647         bool get_with( guarded_ptr& ptr, Q const& key, Less pred )
648         {
649             CDS_UNUSED( pred );
650             return get_at( head(), ptr.guard(), key, typename maker::template less_wrapper<Less>::type() );
651         }
652
653         /// Check if the list is empty
654         bool empty() const
655         {
656             return base_class::empty();
657         }
658
659         /// Returns list's item count
660         /**
661             The value returned depends on item counter provided by \p Traits. For \p atomicity::empty_item_counter,
662             this function always returns 0.
663
664             @note Even if you use real item counter and it returns 0, this fact is not mean that the list
665             is empty. To check list emptyness use \p empty() method.
666         */
667         size_t size() const
668         {
669             return base_class::size();
670         }
671
672         /// Clears the list
673         void clear()
674         {
675             base_class::clear();
676         }
677
678     protected:
679         //@cond
680         bool insert_node_at( head_type& refHead, node_type * pNode )
681         {
682             assert( pNode );
683             scoped_node_ptr p(pNode);
684             if ( base_class::insert_at( refHead, *pNode )) {
685                 p.release();
686                 return true;
687             }
688
689             return false;
690         }
691
692         template <typename Q>
693         bool insert_at( head_type& refHead, Q const& val )
694         {
695             return insert_node_at( refHead, alloc_node( val ));
696         }
697
698         template <typename Q, typename Func>
699         bool insert_at( head_type& refHead, Q const& key, Func f )
700         {
701             scoped_node_ptr pNode( alloc_node( key ));
702
703             if ( base_class::insert_at( refHead, *pNode, [&f]( node_type& node ) { f( node_to_value(node) ); } )) {
704                 pNode.release();
705                 return true;
706             }
707             return false;
708         }
709
710         template <typename... Args>
711         bool emplace_at( head_type& refHead, Args&&... args )
712         {
713             return insert_node_at( refHead, alloc_node( std::forward<Args>(args) ... ));
714         }
715
716         template <typename Q, typename Compare, typename Func>
717         bool erase_at( head_type& refHead, Q const& key, Compare cmp, Func f )
718         {
719             return base_class::erase_at( refHead, key, cmp, [&f](node_type const& node){ f( node_to_value(node) ); } );
720         }
721
722         template <typename Q, typename Compare>
723         bool extract_at( head_type& refHead, typename gc::Guard& dest, Q const& key, Compare cmp )
724         {
725             return base_class::extract_at( refHead, dest, key, cmp );
726         }
727
728         template <typename Q, typename Func>
729         std::pair<bool, bool> ensure_at( head_type& refHead, Q const& key, Func f )
730         {
731             scoped_node_ptr pNode( alloc_node( key ));
732
733             std::pair<bool, bool> ret = base_class::ensure_at( refHead, *pNode,
734                 [&f, &key](bool bNew, node_type& node, node_type&){ f( bNew, node_to_value(node), key ); });
735             if ( ret.first && ret.second )
736                 pNode.release();
737
738             return ret;
739         }
740
741         template <typename Q, typename Compare>
742         bool find_at( head_type& refHead, Q const& key, Compare cmp )
743         {
744             return base_class::find_at( refHead, key, cmp );
745         }
746
747         template <typename Q, typename Compare, typename Func>
748         bool find_at( head_type& refHead, Q& val, Compare cmp, Func f )
749         {
750             return base_class::find_at( refHead, val, cmp, [&f](node_type& node, Q& v){ f( node_to_value(node), v ); });
751         }
752
753         template <typename Q, typename Compare>
754         bool get_at( head_type& refHead, typename gc::Guard& guard, Q const& key, Compare cmp )
755         {
756             return base_class::get_at( refHead, guard, key, cmp );
757         }
758
759         //@endcond
760     };
761
762 }}  // namespace cds::container
763
764 #endif  // #ifndef __CDS_CONTAINER_IMPL_MICHAEL_LIST_H