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