#include <stdapis/stlportv5/stl/_slist.h>
class slist |
Public Member Type Definitions | |
---|---|
typedef | forward_iterator_tag _Iterator_category |
typedef | _STLP_PRIV _Slist_iterator< _Tp, _Const_traits< _Tp > > const_iterator |
typedef | const value_type * const_pointer |
typedef | const value_type & const_reference |
typedef | ptrdiff_t difference_type |
typedef | _STLP_PRIV _Slist_iterator< _Tp, _Nonconst_traits< _Tp > > iterator |
typedef | value_type * pointer |
typedef | value_type & reference |
typedef | size_t size_type |
typedef | _Tp value_type |
typedef forward_iterator_tag | _Iterator_category |
typedef _STLP_PRIV _Slist_iterator< _Tp, _Const_traits< _Tp > > | const_iterator |
typedef const value_type * | const_pointer |
typedef const value_type & | const_reference |
typedef ptrdiff_t | difference_type |
typedef _STLP_PRIV _Slist_iterator< _Tp, _Nonconst_traits< _Tp > > | iterator |
typedef value_type * | pointer |
typedef value_type & | reference |
typedef size_t | size_type |
typedef _Tp | value_type |
slist | ( | const allocator_type & | __a = allocator_type() | ) | [inline, explicit] |
slist | ( | size_type | __n, |
const value_type & | __x = _STLP_DEFAULT_CONSTRUCTED(_Tp), | ||
const allocator_type & | __a = allocator_type() | ||
) | [inline, explicit] |
slist | ( | const_iterator | __first, |
const_iterator | __last, | ||
const allocator_type & | __a = allocator_type() | ||
) | [inline] |
slist | ( | const value_type * | __first, |
const value_type * | __last, | ||
const allocator_type & | __a = allocator_type() | ||
) | [inline] |
slist | ( | const _Self & | __x | ) | [inline] |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
Parameters | |
---|---|
__x | - |
slist | ( | __move_source< _Self > | src | ) | [inline] |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
Parameters | |
---|---|
src | - |
~slist | ( | ) | [inline] |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
void | assign | ( | size_type | __n, |
const _Tp & | __val | |||
) | [inline] |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
Parameters | |
---|---|
__n | - |
__val | - |
void | assign | ( | const_pointer | __first, |
const_pointer | __last | |||
) | [inline] |
void | assign | ( | const_iterator | __first, |
const_iterator | __last | |||
) | [inline] |
iterator | before_begin | ( | ) | [inline] |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
const_iterator | before_begin | ( | ) | const [inline] |
iterator | begin | ( | ) | [inline] |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
const_iterator | begin | ( | ) | const [inline] |
void | clear | ( | ) | [inline] |
bool | empty | ( | ) | const [inline] |
iterator | end | ( | ) | [inline] |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
const_iterator | end | ( | ) | const [inline] |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
Parameters | |
---|---|
__pos | - |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
Parameters | |
---|---|
__first | - |
__last | - |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
Parameters | |
---|---|
__pos | - |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
Parameters | |
---|---|
__before_first | - |
__last | - |
reference | front | ( | ) | [inline] |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
const_reference | front | ( | ) | const [inline] |
allocator_type | get_allocator | ( | ) | const [inline] |
iterator | insert | ( | iterator | __pos, |
const value_type & | __x = _Tp() | |||
) | [inline] |
void | insert | ( | iterator | __pos, |
size_type | __n, | |||
const value_type & | __x | |||
) | [inline] |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
Parameters | |
---|---|
__pos | - |
__n | - |
__x | - |
void | insert | ( | iterator | __pos, |
const value_type * | __first, | |||
const value_type * | __last | |||
) | [inline] |
void | insert | ( | iterator | __pos, |
const_iterator | __first, | |||
const_iterator | __last | |||
) | [inline] |
iterator | insert_after | ( | iterator | __pos, |
const value_type & | __x = _Tp() | |||
) | [inline] |
void | insert_after | ( | iterator | __pos, |
size_type | __n, | |||
const value_type & | __x | |||
) | [inline] |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
Parameters | |
---|---|
__pos | - |
__n | - |
__x | - |
void | insert_after | ( | iterator | __pos, |
const value_type * | __first, | |||
const value_type * | __last | |||
) | [inline] |
void | insert_after | ( | iterator | __pos, |
const_iterator | __first, | |||
const_iterator | __last | |||
) | [inline] |
size_type | max_size | ( | ) | const [inline] |
void | merge | ( | _Self & | __x | ) | [inline] |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
Parameters | |
---|---|
__x | - |
void | pop_front | ( | ) | [inline] |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
iterator | previous | ( | const_iterator | __pos | ) | [inline] |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
Parameters | |
---|---|
__pos | - |
const_iterator | previous | ( | const_iterator | __pos | ) | const [inline] |
void | push_front | ( | const value_type & | __x = _Tp() | ) | [inline] |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
Parameters | |
---|---|
__x | - |
void | remove | ( | const _Tp & | __val | ) |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
Parameters | |
---|---|
__val | - |
void | resize | ( | size_type | new_size, |
const value_type & | __x = _Tp() | |||
) |
void | reverse | ( | ) | [inline] |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
size_type | size | ( | ) | const [inline] |
void | sort | ( | ) | [inline] |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
Parameters | |
---|---|
__pos | - |
__x | - |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
Parameters | |
---|---|
__pos | - |
__x | - |
__i | - |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
Parameters | |
---|---|
__pos | - |
__x | - |
__first | - |
__last | - |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
Parameters | |
---|---|
__pos | - |
__x | - |
__before_first | - |
__before_last | - |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
Parameters | |
---|---|
__pos | - |
__x | - |
__prev | - |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
Parameters | |
---|---|
__pos | - |
__x | - |
void | swap | ( | _Self & | __x | ) | [inline] |
void | unique | ( | ) | [inline] |
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.
For full documentation see: http://www.sgi.com/tech/stl/table_of_contents.html
The Symbian implementation of this API fully supports all STL functionality.