Scroll to navigation

std::_List_iterator(3) Library Functions Manual std::_List_iterator(3)

NAME

std::_List_iterator -

A list::iterator.

SYNOPSIS

Public Types


typedef _List_node< _Tp > _Node
typedef _List_iterator< _Tp > _Self
typedef ptrdiff_t difference_type
typedef std::bidirectional_iterator_tag iterator_category
typedef _Tp * pointer
typedef _Tp & reference
typedef _Tp value_type

Public Member Functions


_List_iterator (_List_node_base *__x)
bool operator!= (const _Self &__x) const
reference operator* () const
_Self operator++ (int)
_Self & operator++ ()
_Self operator-- (int)
_Self & operator-- ()
pointer operator-> () const
bool operator== (const _Self &__x) const

Public Attributes


_List_node_base * _M_node

Detailed Description

template<typename _Tp> struct std::_List_iterator< _Tp >

A list::iterator.

All the functions are op overloads.

Definition at line 113 of file stl_list.h.

Author

Generated automatically by Doxygen for libstdc++ from the source code.

19 Jun 2018 libstdc++