Namespace List   Compound List   File List   Namespace Members   Compound Members  

utility File Reference

This header file contains some basic template functions and classes that are used throughout the rest of the library. More...


Namespaces

namespace  std
namespace  std::rel_ops

Compounds

struct  std::pair


Detailed Description

This header file contains some basic template functions and classes that are used throughout the rest of the library.

Header <utility> synopsis

namespace std { namespace rel_ops {template<class T> bool operator!=(const T &,const T &); template<class T> bool operator>(const T &,const T &); template<class T> bool operator<=(const T &,const T &); template<class T> bool operator>=(const T &,const T &); }

template <class T1, class T2> struct pair;

template <class T1, class T2> bool operator==(const pair<T1,T2>&, const pair<T1,T2>&);

template <class T1, class T2> bool operator< (const pair<T1,T2>&, const pair<T1,T2>&);

template <class T1, class T2> bool operator!=(const pair<T1,T2>&, const pair<T1,T2>&);

template <class T1, class T2> bool operator> (const pair<T1,T2>&, const pair<T1,T2>&);

template <class T1, class T2> bool operator>=(const pair<T1,T2>&, const pair<T1,T2>&);

template <class T1, class T2> bool operator<=(const pair<T1,T2>&, const pair<T1,T2>&);

template <class T1, class T2> pair<T1,T2> make_pair(const T1&, const T2&);


Generated at Tue Sep 14 07:34:43 1999 for FREE_C++_STANDARD_LIBRARY by doxygen  written by Dimitri van Heesch, © 1997-1999