stl_multiset.h File Reference

#include <bits/concept_check.h>

Include dependency graph for stl_multiset.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

namespace  std

Functions

template<class Key, class Compare, class Alloc>
bool operator== (const multiset< Key, Compare, Alloc > &x, const multiset< Key, Compare, Alloc > &y)
 Multiset equality comparison.
template<class Key, class Compare, class Alloc>
bool operator< (const multiset< Key, Compare, Alloc > &x, const multiset< Key, Compare, Alloc > &y)
 Multiset ordering relation.
template<class Key, class Compare, class Alloc>
bool operator!= (const multiset< Key, Compare, Alloc > &x, const multiset< Key, Compare, Alloc > &y)
 Returns !(x == y).
template<class Key, class Compare, class Alloc>
bool operator> (const multiset< Key, Compare, Alloc > &x, const multiset< Key, Compare, Alloc > &y)
 Returns y < x.
template<class Key, class Compare, class Alloc>
bool operator<= (const multiset< Key, Compare, Alloc > &x, const multiset< Key, Compare, Alloc > &y)
 Returns !(y < x).
template<class Key, class Compare, class Alloc>
bool operator>= (const multiset< Key, Compare, Alloc > &x, const multiset< Key, Compare, Alloc > &y)
 Returns !(x < y).
template<class Key, class Compare, class Alloc>
void swap (multiset< Key, Compare, Alloc > &x, multiset< Key, Compare, Alloc > &y)
 See std::multiset::swap().


Detailed Description

This is an internal header file, included by other library headers. You should not attempt to use it directly.

Definition in file stl_multiset.h.


Function Documentation

template<class Key, class Compare, class Alloc>
bool std::operator!= const multiset< Key, Compare, Alloc > &  x,
const multiset< Key, Compare, Alloc > &  y
[inline]
 

Returns !(x == y).

Definition at line 551 of file stl_multiset.h.

template<class Key, class Compare, class Alloc>
bool std::operator< const multiset< Key, Compare, Alloc > &  x,
const multiset< Key, Compare, Alloc > &  y
[inline]
 

Multiset ordering relation.

Parameters:
x A multiset.
y A multiset of the same type as x.
Returns:
True iff x is lexicographically less than y.
This is a total ordering relation. It is linear in the size of the maps. The elements must be comparable with <.

See std::lexicographical_compare() for how the determination is made.

Definition at line 544 of file stl_multiset.h.

template<class Key, class Compare, class Alloc>
bool std::operator<= const multiset< Key, Compare, Alloc > &  x,
const multiset< Key, Compare, Alloc > &  y
[inline]
 

Returns !(y < x).

Definition at line 565 of file stl_multiset.h.

template<class Key, class Compare, class Alloc>
bool std::operator== const multiset< Key, Compare, Alloc > &  x,
const multiset< Key, Compare, Alloc > &  y
[inline]
 

Multiset equality comparison.

Parameters:
x A multiset.
y A multiset of the same type as x.
Returns:
True iff the size and elements of the multisets are equal.
This is an equivalence relation. It is linear in the size of the multisets. Multisets are considered equivalent if their sizes are equal, and if corresponding elements compare equal.

Definition at line 527 of file stl_multiset.h.

template<class Key, class Compare, class Alloc>
bool std::operator> const multiset< Key, Compare, Alloc > &  x,
const multiset< Key, Compare, Alloc > &  y
[inline]
 

Returns y < x.

Definition at line 558 of file stl_multiset.h.

template<class Key, class Compare, class Alloc>
bool std::operator>= const multiset< Key, Compare, Alloc > &  x,
const multiset< Key, Compare, Alloc > &  y
[inline]
 

Returns !(x < y).

Definition at line 572 of file stl_multiset.h.

template<class Key, class Compare, class Alloc>
void std::swap multiset< Key, Compare, Alloc > &  x,
multiset< Key, Compare, Alloc > &  y
[inline]
 

See std::multiset::swap().

Definition at line 579 of file stl_multiset.h.

References std::multiset< Key, Compare, Alloc >::swap().


Generated on Fri May 6 01:11:37 2005 for libstdc++-v3 Source by  doxygen 1.4.2