Docfix
[libcds.git] / cds / container / impl / ellen_bintree_set.h
1 /*
2     This file is a part of libcds - Concurrent Data Structures library
3
4     (C) Copyright Maxim Khizhinsky (libcds.dev@gmail.com) 2006-2016
5
6     Source code repo: http://github.com/khizmax/libcds/
7     Download: http://sourceforge.net/projects/libcds/files/
8     
9     Redistribution and use in source and binary forms, with or without
10     modification, are permitted provided that the following conditions are met:
11
12     * Redistributions of source code must retain the above copyright notice, this
13       list of conditions and the following disclaimer.
14
15     * Redistributions in binary form must reproduce the above copyright notice,
16       this list of conditions and the following disclaimer in the documentation
17       and/or other materials provided with the distribution.
18
19     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20     AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21     IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22     DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23     FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24     DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25     SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26     CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27     OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28     OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.     
29 */
30
31 #ifndef CDSLIB_CONTAINER_IMPL_ELLEN_BINTREE_SET_H
32 #define CDSLIB_CONTAINER_IMPL_ELLEN_BINTREE_SET_H
33
34 #include <type_traits>
35 #include <cds/container/details/ellen_bintree_base.h>
36 #include <cds/intrusive/impl/ellen_bintree.h>
37 #include <cds/container/details/guarded_ptr_cast.h>
38
39 namespace cds { namespace container {
40
41     /// Set based on Ellen's et al binary search tree
42     /** @ingroup cds_nonintrusive_set
43         @ingroup cds_nonintrusive_tree
44         @anchor cds_container_EllenBinTreeSet
45
46         Source:
47             - [2010] F.Ellen, P.Fatourou, E.Ruppert, F.van Breugel "Non-blocking Binary Search Tree"
48
49         %EllenBinTreeSet is an unbalanced leaf-oriented binary search tree that implements the <i>set</i>
50         abstract data type. Nodes maintains child pointers but not parent pointers.
51         Every internal node has exactly two children, and all data of type \p T currently in
52         the tree are stored in the leaves. Internal nodes of the tree are used to direct \p find
53         operation along the path to the correct leaf. The keys (of \p Key type) stored in internal nodes
54         may or may not be in the set. \p Key type is a subset of \p T type.
55         There should be exactly defined a key extracting functor for converting object of type \p T to
56         object of type \p Key.
57
58         Due to \p extract_min and \p extract_max member functions the \p %EllenBinTreeSet can act as
59         a <i>priority queue</i>. In this case you should provide unique compound key, for example,
60         the priority value plus some uniformly distributed random value.
61
62         @warning Recall the tree is <b>unbalanced</b>. The complexity of operations is <tt>O(log N)</tt>
63         for uniformly distributed random keys, but in the worst case the complexity is <tt>O(N)</tt>.
64
65         @note In the current implementation we do not use helping technique described in the original paper.
66         In Hazard Pointer schema helping is too complicated and does not give any observable benefits.
67         Instead of helping, when a thread encounters a concurrent operation it just spins waiting for
68         the operation done. Such solution allows greatly simplify the implementation of tree.
69
70         <b>Template arguments</b> :
71         - \p GC - safe memory reclamation (i.e. light-weight garbage collector) type, like \p cds::gc::HP, cds::gc::DHP
72         - \p Key - key type, a subset of \p T
73         - \p T - type to be stored in tree's leaf nodes.
74         - \p Traits - set traits, default is \p ellen_bintree::traits
75             It is possible to declare option-based tree with \p ellen_bintree::make_set_traits metafunction
76             instead of \p Traits template argument.
77
78         @note Do not include <tt><cds/container/impl/ellen_bintree_set.h></tt> header file directly.
79         There are header file for each GC type:
80         - <tt><cds/container/ellen_bintree_set_hp.h></tt> - for \p cds::gc::HP
81         - <tt><cds/container/ellen_bintree_set_dhp.h></tt> - for \p cds::gc::DHP
82         - <tt><cds/container/ellen_bintree_set_rcu.h></tt> - for RCU GC
83             (see \ref cds_container_EllenBinTreeSet_rcu "RCU-based EllenBinTreeSet")
84
85         @anchor cds_container_EllenBinTreeSet_less
86         <b>Predicate requirements</b>
87
88         \p Traits::less, \p Traits::compare and other predicates using with member fuctions should accept at least parameters
89         of type \p T and \p Key in any combination.
90         For example, for \p Foo struct with \p std::string key field the appropiate \p less functor is:
91         \code
92         struct Foo
93         {
94             std::string m_strKey;
95             ...
96         };
97
98         struct less {
99             bool operator()( Foo const& v1, Foo const& v2 ) const
100             { return v1.m_strKey < v2.m_strKey ; }
101
102             bool operator()( Foo const& v, std::string const& s ) const
103             { return v.m_strKey < s ; }
104
105             bool operator()( std::string const& s, Foo const& v ) const
106             { return s < v.m_strKey ; }
107
108             // Support comparing std::string and char const *
109             bool operator()( std::string const& s, char const * p ) const
110             { return s.compare(p) < 0 ; }
111
112             bool operator()( Foo const& v, char const * p ) const
113             { return v.m_strKey.compare(p) < 0 ; }
114
115             bool operator()( char const * p, std::string const& s ) const
116             { return s.compare(p) > 0; }
117
118             bool operator()( char const * p, Foo const& v ) const
119             { return v.m_strKey.compare(p) > 0; }
120         };
121         \endcode
122     */
123     template <
124         class GC,
125         typename Key,
126         typename T,
127 #ifdef CDS_DOXYGEN_INVOKED
128         class Traits = ellen_bintree::traits
129 #else
130         class Traits
131 #endif
132     >
133     class EllenBinTreeSet
134 #ifdef CDS_DOXYGEN_INVOKED
135         : public cds::intrusive::EllenBinTree< GC, Key, T, Traits >
136 #else
137         : public ellen_bintree::details::make_ellen_bintree_set< GC, Key, T, Traits >::type
138 #endif
139     {
140         //@cond
141         typedef ellen_bintree::details::make_ellen_bintree_set< GC, Key, T, Traits > maker;
142         typedef typename maker::type base_class;
143         //@endcond
144
145     public:
146         typedef GC      gc;         ///< Garbage collector
147         typedef Key     key_type;   ///< type of a key to be stored in internal nodes; key is a part of \p value_type
148         typedef T       value_type; ///< type of value to be stored in the binary tree
149         typedef Traits  traits;    ///< Traits template parameter
150
151 #   ifdef CDS_DOXYGEN_INVOKED
152         typedef implementation_defined key_comparator  ;    ///< key compare functor based on opt::compare and opt::less option setter.
153 #   else
154         typedef typename maker::intrusive_traits::compare   key_comparator;
155 #   endif
156         typedef typename base_class::item_counter           item_counter;  ///< Item counting policy used
157         typedef typename base_class::memory_model           memory_model;  ///< Memory ordering. See cds::opt::memory_model option
158         typedef typename base_class::stat                   stat;          ///< internal statistics type
159         typedef typename traits::key_extractor              key_extractor; ///< key extracting functor
160         typedef typename traits::back_off                   back_off;      ///< Back-off strategy
161
162         typedef typename traits::allocator                  allocator_type;   ///< Allocator for leaf nodes
163         typedef typename base_class::node_allocator         node_allocator;   ///< Internal node allocator
164         typedef typename base_class::update_desc_allocator  update_desc_allocator; ///< Update descriptor allocator
165
166     protected:
167         //@cond
168         typedef typename maker::cxx_leaf_node_allocator cxx_leaf_node_allocator;
169         typedef typename base_class::value_type         leaf_node;
170         typedef typename base_class::internal_node      internal_node;
171
172         typedef std::unique_ptr< leaf_node, typename maker::leaf_deallocator > scoped_node_ptr;
173         //@endcond
174
175     public:
176         /// Guarded pointer
177         typedef typename gc::template guarded_ptr< leaf_node, value_type, details::guarded_ptr_cast_set<leaf_node, value_type> > guarded_ptr;
178
179     public:
180         /// Default constructor
181         EllenBinTreeSet()
182             : base_class()
183         {}
184
185         /// Clears the set
186         ~EllenBinTreeSet()
187         {}
188
189         /// Inserts new node
190         /**
191             The function creates a node with copy of \p val value
192             and then inserts the node created into the set.
193
194             The type \p Q should contain at least the complete key for the node.
195             The object of \ref value_type should be constructible from a value of type \p Q.
196             In trivial case, \p Q is equal to \ref value_type.
197
198             Returns \p true if \p val is inserted into the set, \p false otherwise.
199         */
200         template <typename Q>
201         bool insert( Q const& val )
202         {
203             scoped_node_ptr sp( cxx_leaf_node_allocator().New( val ));
204             if ( base_class::insert( *sp.get() )) {
205                 sp.release();
206                 return true;
207             }
208             return false;
209         }
210
211         /// Inserts new node
212         /**
213             The function allows to split creating of new item into two part:
214             - create item with key only
215             - insert new item into the set
216             - if inserting is success, calls  \p f functor to initialize value-fields of \p val.
217
218             The functor signature is:
219             \code
220                 void func( value_type& val );
221             \endcode
222             where \p val is the item inserted. User-defined functor \p f should guarantee that during changing
223             \p val no any other changes could be made on this set's item by concurrent threads.
224             The user-defined functor is called only if the inserting is success.
225         */
226         template <typename Q, typename Func>
227         bool insert( Q const& val, Func f )
228         {
229             scoped_node_ptr sp( cxx_leaf_node_allocator().New( val ));
230             if ( base_class::insert( *sp.get(), [&f]( leaf_node& val ) { f( val.m_Value ); } )) {
231                 sp.release();
232                 return true;
233             }
234             return false;
235         }
236
237         /// Updates the node
238         /**
239             The operation performs inserting or changing data with lock-free manner.
240
241             If the item \p val is not found in the set, then \p val is inserted into the set
242             iff \p bAllowInsert is \p true.
243             Otherwise, the functor \p func is called with item found.
244             The functor \p func signature is:
245             \code
246                 struct my_functor {
247                     void operator()( bool bNew, value_type& item, const Q& val );
248                 };
249             \endcode
250             with arguments:
251             with arguments:
252             - \p bNew - \p true if the item has been inserted, \p false otherwise
253             - \p item - item of the set
254             - \p val - argument \p key passed into the \p %update() function
255
256             The functor can change non-key fields of the \p item; however, \p func must guarantee
257             that during changing no any other modifications could be made on this item by concurrent threads.
258
259             Returns std::pair<bool, bool> where \p first is \p true if operation is successfull,
260             i.e. the node has been inserted or updated,
261             \p second is \p true if new item has been added or \p false if the item with \p key
262             already exists.
263
264             @warning See \ref cds_intrusive_item_creating "insert item troubleshooting"
265         */
266         template <typename Q, typename Func>
267         std::pair<bool, bool> update( const Q& val, Func func, bool bAllowInsert = true )
268         {
269             scoped_node_ptr sp( cxx_leaf_node_allocator().New( val ));
270             std::pair<bool, bool> bRes = base_class::update( *sp,
271                 [&func, &val](bool bNew, leaf_node& node, leaf_node&){ func( bNew, node.m_Value, val ); },
272                 bAllowInsert );
273             if ( bRes.first && bRes.second )
274                 sp.release();
275             return bRes;
276         }
277         //@cond
278         template <typename Q, typename Func>
279         CDS_DEPRECATED("ensure() is deprecated, use update()")
280         std::pair<bool, bool> ensure( const Q& val, Func func )
281         {
282             return update( val, func, true );
283         }
284         //@endcond
285
286         /// Inserts data of type \p value_type created in-place from \p args
287         /**
288             Returns \p true if inserting successful, \p false otherwise.
289         */
290         template <typename... Args>
291         bool emplace( Args&&... args )
292         {
293             scoped_node_ptr sp( cxx_leaf_node_allocator().MoveNew( std::forward<Args>(args)... ));
294             if ( base_class::insert( *sp.get() )) {
295                 sp.release();
296                 return true;
297             }
298             return false;
299         }
300
301         /// Delete \p key from the set
302         /** \anchor cds_nonintrusive_EllenBinTreeSet_erase_val
303
304             The item comparator should be able to compare the type \p value_type
305             and the type \p Q.
306
307             Return \p true if key is found and deleted, \p false otherwise
308         */
309         template <typename Q>
310         bool erase( Q const& key )
311         {
312             return base_class::erase( key );
313         }
314
315         /// Deletes the item from the set using \p pred predicate for searching
316         /**
317             The function is an analog of \ref cds_nonintrusive_EllenBinTreeSet_erase_val "erase(Q const&)"
318             but \p pred is used for key comparing.
319             \p Less functor has the interface like \p std::less.
320             \p Less must imply the same element order as the comparator used for building the set.
321         */
322         template <typename Q, typename Less>
323         bool erase_with( Q const& key, Less pred )
324         {
325             CDS_UNUSED( pred );
326             return base_class::erase_with( key, cds::details::predicate_wrapper< leaf_node, Less, typename maker::value_accessor >());
327         }
328
329         /// Delete \p key from the set
330         /** \anchor cds_nonintrusive_EllenBinTreeSet_erase_func
331
332             The function searches an item with key \p key, calls \p f functor
333             and deletes the item. If \p key is not found, the functor is not called.
334
335             The functor \p Func interface:
336             \code
337             struct extractor {
338                 void operator()(value_type const& val);
339             };
340             \endcode
341
342             Since the key of MichaelHashSet's \p value_type is not explicitly specified,
343             template parameter \p Q defines the key type searching in the list.
344             The list item comparator should be able to compare the type \p T of list item
345             and the type \p Q.
346
347             Return \p true if key is found and deleted, \p false otherwise
348         */
349         template <typename Q, typename Func>
350         bool erase( Q const& key, Func f )
351         {
352             return base_class::erase( key, [&f]( leaf_node const& node) { f( node.m_Value ); } );
353         }
354
355         /// Deletes the item from the set using \p pred predicate for searching
356         /**
357             The function is an analog of \ref cds_nonintrusive_EllenBinTreeSet_erase_func "erase(Q const&, Func)"
358             but \p pred is used for key comparing.
359             \p Less functor has the interface like \p std::less.
360             \p Less must imply the same element order as the comparator used for building the set.
361         */
362         template <typename Q, typename Less, typename Func>
363         bool erase_with( Q const& key, Less pred, Func f )
364         {
365             CDS_UNUSED( pred );
366             return base_class::erase_with( key, cds::details::predicate_wrapper< leaf_node, Less, typename maker::value_accessor >(),
367                 [&f]( leaf_node const& node) { f( node.m_Value ); } );
368         }
369
370         /// Extracts an item with minimal key from the set
371         /**
372             If the set is not empty, the function returns a guarded pointer to minimum value.
373             If the set is empty, the function returns an empty \p guarded_ptr.
374
375             @note Due the concurrent nature of the set, the function extracts <i>nearly</i> minimum key.
376             It means that the function gets leftmost leaf of the tree and tries to unlink it.
377             During unlinking, a concurrent thread may insert an item with key less than leftmost item's key.
378             So, the function returns the item with minimum key at the moment of tree traversing.
379
380             The guarded pointer prevents deallocation of returned item,
381             see \p cds::gc::guarded_ptr for explanation.
382             @note Each \p guarded_ptr object uses the GC's guard that can be limited resource.
383         */
384         guarded_ptr extract_min()
385         {
386             guarded_ptr gp;
387             base_class::extract_min_( gp.guard() );
388             return gp;
389         }
390
391         /// Extracts an item with maximal key from the set
392         /**
393             If the set is not empty, the function returns a guarded pointer to maximal value.
394             If the set is empty, the function returns an empty \p guarded_ptr.
395
396             @note Due the concurrent nature of the set, the function extracts <i>nearly</i> maximal key.
397             It means that the function gets rightmost leaf of the tree and tries to unlink it.
398             During unlinking, a concurrent thread may insert an item with key great than leftmost item's key.
399             So, the function returns the item with maximum key at the moment of tree traversing.
400
401             The guarded pointer prevents deallocation of returned item,
402             see \p cds::gc::guarded_ptr for explanation.
403             @note Each \p guarded_ptr object uses the GC's guard that can be limited resource.
404         */
405         guarded_ptr extract_max()
406         {
407             guarded_ptr gp;
408             base_class::extract_max_( gp.guard() );
409             return gp;
410         }
411
412         /// Extracts an item from the tree
413         /** \anchor cds_nonintrusive_EllenBinTreeSet_extract
414             The function searches an item with key equal to \p key in the tree,
415             unlinks it, and returns an guarded pointer to it.
416             If the item  is not found the function returns an empty \p guarded_ptr.
417
418             The guarded pointer prevents deallocation of returned item,
419             see \p cds::gc::guarded_ptr for explanation.
420             @note Each \p guarded_ptr object uses the GC's guard that can be limited resource.
421         */
422         template <typename Q>
423         guarded_ptr extract( Q const& key )
424         {
425             guarded_ptr gp;
426             base_class::extract_( gp.guard(), key );
427             return gp;
428         }
429
430         /// Extracts an item from the set using \p pred for searching
431         /**
432             The function is an analog of \ref cds_nonintrusive_EllenBinTreeSet_extract "extract(Q const&)"
433             but \p pred is used for key compare.
434             \p Less has the interface like \p std::less.
435             \p pred must imply the same element order as the comparator used for building the set.
436         */
437         template <typename Q, typename Less>
438         guarded_ptr extract_with( Q const& key, Less pred )
439         {
440             CDS_UNUSED( pred );
441             guarded_ptr gp;
442             base_class::extract_with_( gp.guard(), key,
443                 cds::details::predicate_wrapper< leaf_node, Less, typename maker::value_accessor >());
444             return gp;
445         }
446
447         /// Find the key \p key
448         /**
449             @anchor cds_nonintrusive_EllenBinTreeSet_find_func
450
451             The function searches the item with key equal to \p key and calls the functor \p f for item found.
452             The interface of \p Func functor is:
453             \code
454             struct functor {
455                 void operator()( value_type& item, Q& key );
456             };
457             \endcode
458             where \p item is the item found, \p key is the <tt>find</tt> function argument.
459
460             The functor may change non-key fields of \p item. Note that the functor is only guarantee
461             that \p item cannot be disposed during functor is executing.
462             The functor does not serialize simultaneous access to the set's \p item. If such access is
463             possible you must provide your own synchronization schema on item level to exclude unsafe item modifications.
464
465             The \p key argument is non-const since it can be used as \p f functor destination i.e., the functor
466             can modify both arguments.
467
468             Note the hash functor specified for class \p Traits template parameter
469             should accept a parameter of type \p Q that may be not the same as \p value_type.
470
471             The function returns \p true if \p key is found, \p false otherwise.
472         */
473         template <typename Q, typename Func>
474         bool find( Q& key, Func f )
475         {
476             return base_class::find( key, [&f]( leaf_node& node, Q& v ) { f( node.m_Value, v ); });
477         }
478         //@cond
479         template <typename Q, typename Func>
480         bool find( Q const& key, Func f )
481         {
482             return base_class::find( key, [&f]( leaf_node& node, Q const& v ) { f( node.m_Value, v ); } );
483         }
484         //@endcond
485
486         /// Finds the key \p key using \p pred predicate for searching
487         /**
488             The function is an analog of \ref cds_nonintrusive_EllenBinTreeSet_find_func "find(Q&, Func)"
489             but \p pred is used for key comparing.
490             \p Less functor has the interface like \p std::less.
491             \p Less must imply the same element order as the comparator used for building the set.
492         */
493         template <typename Q, typename Less, typename Func>
494         bool find_with( Q& key, Less pred, Func f )
495         {
496             CDS_UNUSED( pred );
497             return base_class::find_with( key, cds::details::predicate_wrapper< leaf_node, Less, typename maker::value_accessor >(),
498                 [&f]( leaf_node& node, Q& v ) { f( node.m_Value, v ); } );
499         }
500         //@cond
501         template <typename Q, typename Less, typename Func>
502         bool find_with( Q const& key, Less pred, Func f )
503         {
504             CDS_UNUSED( pred );
505             return base_class::find_with( key, cds::details::predicate_wrapper< leaf_node, Less, typename maker::value_accessor >(),
506                                           [&f]( leaf_node& node, Q const& v ) { f( node.m_Value, v ); } );
507         }
508         //@endcond
509
510         /// Checks whether the set contains \p key
511         /**
512             The function searches the item with key equal to \p key
513             and returns \p true if it is found, and \p false otherwise.
514         */
515         template <typename Q>
516         bool contains( Q const & key )
517         {
518             return base_class::contains( key );
519         }
520         //@cond
521         template <typename Q>
522         CDS_DEPRECATED("deprecated, use contains()")
523         bool find( Q const & key )
524         {
525             return contains( key );
526         }
527         //@endcond
528
529         /// Checks whether the set contains \p key using \p pred predicate for searching
530         /**
531             The function is similar to <tt>contains( key )</tt> but \p pred is used for key comparing.
532             \p Less functor has the interface like \p std::less.
533             \p Less must imply the same element order as the comparator used for building the set.
534         */
535         template <typename Q, typename Less>
536         bool contains( Q const& key, Less pred )
537         {
538             CDS_UNUSED( pred );
539             return base_class::contains( key, cds::details::predicate_wrapper< leaf_node, Less, typename maker::value_accessor >());
540         }
541         //@cond
542         template <typename Q, typename Less>
543         CDS_DEPRECATED("deprecated, use contains()")
544         bool find_with( Q const& key, Less pred )
545         {
546             return contains( key, pred );
547         }
548         //@endcond
549
550         /// Finds \p key and returns the item found
551         /** @anchor cds_nonintrusive_EllenBinTreeSet_get
552             The function searches the item with key equal to \p key and returns the item found as an guarded pointer.
553             The function returns \p true if \p key is found, \p false otherwise.
554
555             The guarded pointer prevents deallocation of returned item,
556             see \p cds::gc::guarded_ptr for explanation.
557             @note Each \p guarded_ptr object uses the GC's guard that can be limited resource.
558         */
559         template <typename Q>
560         guarded_ptr get( Q const& key )
561         {
562             guarded_ptr gp;
563             base_class::get_( gp.guard(), key );
564             return gp;
565         }
566
567         /// Finds \p key with predicate \p pred and returns the item found
568         /**
569             The function is an analog of \ref cds_nonintrusive_EllenBinTreeSet_get "get(Q const&)"
570             but \p pred is used for key comparing.
571             \p Less functor has the interface like \p std::less.
572             \p pred must imply the same element order as the comparator used for building the set.
573         */
574         template <typename Q, typename Less>
575         guarded_ptr get_with( Q const& key, Less pred )
576         {
577             CDS_UNUSED(pred);
578             guarded_ptr gp;
579             base_class::get_with_( gp.guard(), key,
580                 cds::details::predicate_wrapper< leaf_node, Less, typename maker::value_accessor >() );
581             return gp;
582         }
583
584         /// Clears the set (not atomic)
585         /**
586             The function unlink all items from the tree.
587             The function is not atomic, thus, in multi-threaded environment with parallel insertions
588             this sequence
589             \code
590             set.clear();
591             assert( set.empty() );
592             \endcode
593             the assertion could be raised.
594
595             For each leaf the \ref disposer will be called after unlinking.
596         */
597         void clear()
598         {
599             base_class::clear();
600         }
601
602         /// Checks if the set is empty
603         bool empty() const
604         {
605             return base_class::empty();
606         }
607
608         /// Returns item count in the set
609         /**
610             Only leaf nodes containing user data are counted.
611
612             The value returned depends on item counter type provided by \p Traits template parameter.
613             If it is \p atomicity::empty_item_counter this function always returns 0.
614
615             The function is not suitable for checking the tree emptiness, use \p empty()
616             member function for this purpose.
617         */
618         size_t size() const
619         {
620             return base_class::size();
621         }
622
623         /// Returns const reference to internal statistics
624         stat const& statistics() const
625         {
626             return base_class::statistics();
627         }
628
629         /// Checks internal consistency (not atomic, not thread-safe)
630         /**
631             The debugging function to check internal consistency of the tree.
632         */
633         bool check_consistency() const
634         {
635             return base_class::check_consistency();
636         }
637     };
638
639 }} // namespace cds::container
640
641 #endif // #ifndef CDSLIB_CONTAINER_IMPL_ELLEN_BINTREE_SET_H