ReactOS 0.4.15-dev-7958-gcd0bb1a
_slist.h File Reference
#include <stl/_algobase.h>
#include <stl/_alloc.h>
#include <stl/_iterator.h>
#include <stl/_construct.h>
#include <stl/_function_base.h>
#include <stl/_slist_base.h>
#include <stl/_slist.c>
#include <stl/_relops_cont.h>
Include dependency graph for _slist.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  _Slist_node< _Tp >
 
struct  _Slist_iterator_base
 
class  _Slist_iterator< _Tp, _Traits >
 
class  _Slist_base< _Tp, _Alloc >
 
class  slist< _Tp, >
 

Macros

#define _STLP_EQUAL_OPERATOR_SPECIALIZED
 
#define _STLP_TEMPLATE_HEADER   template <class _Tp, class _Alloc>
 
#define _STLP_TEMPLATE_CONTAINER   slist<_Tp, _Alloc>
 

Functions

template<class _Tp , class _Alloc , class _BinaryPredicate >
_STLP_MOVE_TO_PRIV_NAMESPACE void _Slist_unique (slist< _Tp, _Alloc > &__that, _BinaryPredicate __binary_pred)
 
template<class _Tp , class _Alloc , class _StrictWeakOrdering >
void _Slist_merge (slist< _Tp, _Alloc > &__that, slist< _Tp, _Alloc > &__x, _StrictWeakOrdering __comp)
 
template<class _Tp , class _Alloc , class _StrictWeakOrdering >
void _Slist_sort (slist< _Tp, _Alloc > &__that, _StrictWeakOrdering __comp)
 
template<class _Tp , class _Alloc >
_STLP_END_NAMESPACE _STLP_BEGIN_NAMESPACE bool _STLP_CALL operator== (const slist< _Tp, _Alloc > &_SL1, const slist< _Tp, _Alloc > &_SL2)
 

Macro Definition Documentation

◆ _STLP_EQUAL_OPERATOR_SPECIALIZED

#define _STLP_EQUAL_OPERATOR_SPECIALIZED

Definition at line 855 of file _slist.h.

◆ _STLP_TEMPLATE_CONTAINER

#define _STLP_TEMPLATE_CONTAINER   slist<_Tp, _Alloc>

Definition at line 857 of file _slist.h.

◆ _STLP_TEMPLATE_HEADER

#define _STLP_TEMPLATE_HEADER   template <class _Tp, class _Alloc>

Definition at line 856 of file _slist.h.

Function Documentation

◆ _Slist_merge()

template<class _Tp , class _Alloc , class _StrictWeakOrdering >
void _Slist_merge ( slist< _Tp, _Alloc > &  __that,
slist< _Tp, _Alloc > &  __x,
_StrictWeakOrdering  __comp 
)

Definition at line 148 of file _slist.c.

149 {
150 typedef _Slist_node<_Tp> _Node;
151 typedef _STLP_PRIV _Slist_node_base _Node_base;
152 if (__that.get_allocator() == __x.get_allocator()) {
153 typename slist<_Tp, _Alloc>::iterator __ite(__that.before_begin());
154 while (__ite._M_node->_M_next && !__x.empty()) {
155 if (__comp(__x.front(), __STATIC_CAST(_Node*, __ite._M_node->_M_next)->_M_data)) {
156 _STLP_VERBOSE_ASSERT(!__comp(__STATIC_CAST(_Node*, __ite._M_node->_M_next)->_M_data, __x.front()),
157 _StlMsg_INVALID_STRICT_WEAK_PREDICATE)
158 __that.splice_after(__ite, __x, __x.before_begin());
159 }
160 ++__ite;
161 }
162 if (!__x.empty()) {
163 __that.splice_after(__ite, __x);
164 }
165 }
166 else {
167 typename slist<_Tp, _Alloc>::iterator __i1(__that.before_begin()), __i2(__x.begin());
168 while (__i1._M_node->_M_next && __i2._M_node) {
169 if (__comp(__STATIC_CAST(_Node*, __i1._M_node->_M_next)->_M_data, *__i2)) {
170 _STLP_VERBOSE_ASSERT(!__comp(*__i2, __STATIC_CAST(_Node*, __i1._M_node->_M_next)->_M_data),
171 _StlMsg_INVALID_STRICT_WEAK_PREDICATE)
172 ++__i1;
173 }
174 else {
175 __i1 = __that.insert_after(__i1, *(__i2++));
176 }
177 }
178 __that.insert_after(__i1, __i2, __x.end());
179 __x.clear();
180 }
181}
#define _STLP_VERBOSE_ASSERT(expr, diagnostic)
Definition: _debug.h:439
#define _STLP_PRIV
Definition: _dm.h:70
_STLP_PRIV _Slist_iterator< _Tp, _Nonconst_traits< _Tp > > iterator
Definition: _slist.h:239
iterator end()
Definition: _slist.h:420
void splice_after(iterator __pos, _Self &__x, iterator __before_first, iterator __before_last)
Definition: _slist.h:697
void clear()
Definition: _slist.h:691
iterator insert_after(iterator __pos, const value_type &__x=_Tp())
Definition: _slist.h:601
iterator before_begin()
Definition: _slist.h:412
allocator_type get_allocator() const
Definition: _slist.h:277
reference front()
Definition: _slist.h:437
bool empty() const
Definition: _slist.h:428
iterator begin()
Definition: _slist.h:416
#define __STATIC_CAST(__x, __y)
Definition: features.h:585

Referenced by _Slist_sort(), and slist< _Tp, >::merge().

◆ _Slist_sort()

template<class _Tp , class _Alloc , class _StrictWeakOrdering >
void _Slist_sort ( slist< _Tp, _Alloc > &  __that,
_StrictWeakOrdering  __comp 
)

Definition at line 184 of file _slist.c.

184 {
185 if (!__that.begin()._M_node || !__that.begin()._M_node->_M_next)
186 return;
187
188 slist<_Tp, _Alloc> __carry(__that.get_allocator());
189 const int NB = 64;
190 _STLP_PRIV _CArray<slist<_Tp, _Alloc>, NB> __counter(__carry);
191 int __fill = 0;
192 while (!__that.empty()) {
193 __carry.splice_after(__carry.before_begin(), __that, __that.before_begin());
194 int __i = 0;
195 while (__i < __fill && !__counter[__i].empty()) {
196 _STLP_PRIV _Slist_merge(__counter[__i], __carry, __comp);
197 __carry.swap(__counter[__i]);
198 ++__i;
199 }
200 __carry.swap(__counter[__i]);
201 if (__i == __fill) {
202 ++__fill;
203 if (__fill >= NB) {
204 //Looks like the slist has too many elements to be sorted with this algorithm:
205 __stl_throw_overflow_error("slist::sort");
206 }
207 }
208 }
209
210 for (int __i = 1; __i < __fill; ++__i)
211 _STLP_PRIV _Slist_merge(__counter[__i], __counter[__i - 1], __comp);
212 __that.swap(__counter[__fill-1]);
213}
void __fill(_ForwardIter __first, _ForwardIter __last, const _Tp &__val, const input_iterator_tag &, _Distance *)
Definition: _algobase.h:417
_STLP_THROW_FUNCT_SPEC _STLP_CALL __stl_throw_overflow_error(const char *__msg)
Definition: _range_errors.c:78
void _Slist_merge(slist< _Tp, _Alloc > &__that, slist< _Tp, _Alloc > &__x, _StrictWeakOrdering __comp)
Definition: _slist.c:148
Definition: _slist.h:57
void swap(_Self &__x)
Definition: _slist.h:430
static const WCHAR empty[]
Definition: main.c:47

Referenced by slist< _Tp, >::sort().

◆ _Slist_unique()

template<class _Tp , class _Alloc , class _BinaryPredicate >
_STLP_MOVE_TO_PRIV_NAMESPACE void _Slist_unique ( slist< _Tp, _Alloc > &  __that,
_BinaryPredicate  __binary_pred 
)

Definition at line 134 of file _slist.c.

134 {
135 typedef _Slist_node<_Tp> _Node;
136 typename slist<_Tp, _Alloc>::iterator __ite(__that.begin());
137 if (__ite != __that.end()) {
138 while (__ite._M_node->_M_next) {
139 if (__pred(*__ite, __STATIC_CAST(_Node*, __ite._M_node->_M_next)->_M_data))
140 __that.erase_after(__ite);
141 else
142 ++__ite;
143 }
144 }
145}
_STLP_INLINE_LOOP _InputIter _Predicate __pred
Definition: _algo.h:68
iterator erase_after(iterator __pos)
Definition: _slist.h:671

Referenced by slist< _Tp, >::unique().

◆ operator==()

template<class _Tp , class _Alloc >
_STLP_END_NAMESPACE _STLP_BEGIN_NAMESPACE bool _STLP_CALL operator== ( const slist< _Tp, _Alloc > &  _SL1,
const slist< _Tp, _Alloc > &  _SL2 
)
inline

Definition at line 841 of file _slist.h.

841 {
842 typedef typename slist<_Tp,_Alloc>::const_iterator const_iterator;
843 const_iterator __end1 = _SL1.end();
844 const_iterator __end2 = _SL2.end();
845
846 const_iterator __i1 = _SL1.begin();
847 const_iterator __i2 = _SL2.begin();
848 while (__i1 != __end1 && __i2 != __end2 && *__i1 == *__i2) {
849 ++__i1;
850 ++__i2;
851 }
852 return __i1 == __end1 && __i2 == __end2;
853}
_STLP_PRIV _Slist_iterator< _Tp, _Const_traits< _Tp > > const_iterator
Definition: _slist.h:240