libstdc++
forward_list.h File Reference

Go to the source code of this file.

Classes

struct  std::_Fwd_list_base< _Tp, _Alloc >
 Base class for forward_list. More...
struct  std::_Fwd_list_const_iterator< _Tp >
 A forward_list::const_iterator. More...
struct  std::_Fwd_list_iterator< _Tp >
 A forward_list::iterator. More...
struct  std::_Fwd_list_node< _Tp >
 A helper node class for forward_list. This is just a linked list with uninitialized storage for a data value in each node. There is a sorting utility method. More...
struct  std::_Fwd_list_node_base
 A helper basic node class for forward_list. This is just a linked list with nothing inside it. There are purely list shuffling utility methods here. More...
class  std::forward_list< _Tp, _Alloc >
 A standard container with linear time access to elements, and fixed time insertion/deletion at any point in the sequence. More...

Namespaces

namespace  std

Functions

template<typename _Tp >
bool std::operator!= (const _Fwd_list_iterator< _Tp > &__x, const _Fwd_list_const_iterator< _Tp > &__y)
template<typename _Tp , typename _Alloc >
bool std::operator!= (const forward_list< _Tp, _Alloc > &__lx, const forward_list< _Tp, _Alloc > &__ly)
template<typename _Tp , typename _Alloc >
bool std::operator< (const forward_list< _Tp, _Alloc > &__lx, const forward_list< _Tp, _Alloc > &__ly)
template<typename _Tp , typename _Alloc >
bool std::operator<= (const forward_list< _Tp, _Alloc > &__lx, const forward_list< _Tp, _Alloc > &__ly)
template<typename _Tp >
bool std::operator== (const _Fwd_list_iterator< _Tp > &__x, const _Fwd_list_const_iterator< _Tp > &__y)
template<typename _Tp , typename _Alloc >
bool std::operator== (const forward_list< _Tp, _Alloc > &__lx, const forward_list< _Tp, _Alloc > &__ly)
template<typename _Tp , typename _Alloc >
bool std::operator> (const forward_list< _Tp, _Alloc > &__lx, const forward_list< _Tp, _Alloc > &__ly)
template<typename _Tp , typename _Alloc >
bool std::operator>= (const forward_list< _Tp, _Alloc > &__lx, const forward_list< _Tp, _Alloc > &__ly)
template<typename _Tp , typename _Alloc >
void std::swap (forward_list< _Tp, _Alloc > &__lx, forward_list< _Tp, _Alloc > &__ly)

Detailed Description

This is an internal header file, included by other library headers. Do not attempt to use it directly. Instead, include <forward_list>.

Definition in file forward_list.h.