operator==,!=,<,<=,>,>=(std::multimap)

来自cppreference.com
< cpp‎ | container‎ | multimap

 
 
 
std::multimap
成员函数
原文:
Member functions
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
multimap::multimap
multimap::~multimap
multimap::operator=
multimap::get_allocator
迭代器
原文:
Iterators
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
multimap::begin
multimap::cbegin

(C++11)
multimap::end
multimap::cend

(C++11)
multimap::rbegin
multimap::crbegin

(C++11)
multimap::rend
multimap::crend

(C++11)
容量
原文:
Capacity
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
multimap::erase
multimap::size
multimap::max_size
修饰符
原文:
Modifiers
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
multimap::clear
multimap::insert
multimap::emplace(C++11)
multimap::emplace_hint(C++11)
multimap::erase
multimap::swap
查找
原文:
Lookup
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
multimap::count
multimap::find
multimap::equal_range
multimap::lower_bound
multimap::upper_bound
观察员
原文:
Observers
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
multimap::key_comp
multimap::value_comp
 

检查到模板循环:Template:include page

template<  >

bool operator==( multimap<>& lhs,

                 multimap<>& rhs );
(1)
template<  >

bool operator!=( multimap<>& lhs,

                 multimap<>& rhs );
(2)
template<  >

bool operator<( multimap<>& lhs,

                multimap<>& rhs );
(3)
template<  >

bool operator<=( multimap<>& lhs,

                 multimap<>& rhs );
(4)
template<  >

bool operator>( multimap<>& lhs,

                multimap<>& rhs );
(5)
template<  >

bool operator>=( multimap<>& lhs,

                 multimap<>& rhs );
(6)
比较两个容器的内容.....
原文:
Compares the contents of two containers.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
1-2) Checks if the contents of lhs and rhs are equal, that is, whether lhs.size() == rhs.size() and each element in lhs has equivalent element in rhs at the same position.
3-6)
比较的内容lhsrhs字典。在执行比较的功能相当于std::lexicographical_compare.
原文:
Compares the contents of lhs and rhs lexicographically. The comparison is performed by a function equivalent to std::lexicographical_compare.
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 参数

lhs, rhs -
容器中的内容进行比较
原文:
containers whose contents to compare
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 返回值

1)
true的容器中的内容是否是等效,false否则
原文:
true if the contents of the containers are equivalent, false otherwise
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
2)
true如果容器的内容是不等价的,false否则
原文:
true if the contents of the containers are not equivalent, false otherwise
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
3)
true如果内容的lhs字典“小于”比内容rhsfalse否则
原文:
true if the contents of the lhs are lexicographically less than the contents of rhs, false otherwise
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
4)
true如果内容的lhs字典“小于”或“等于”的内容rhsfalse否则
原文:
true if the contents of the lhs are lexicographically less than or equal the contents of rhs, false otherwise
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
5)
true如果内容的lhs字典“更大”比内容rhsfalse否则
原文:
true if the contents of the lhs are lexicographically greater than the contents of rhs, false otherwise
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
6)
true如果内容的lhs字典“更大”大于或“等于”的内容rhsfalse否则
原文:
true if the contents of the lhs are lexicographically greater than or equal the contents of rhs, false otherwise
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里

[编辑] 复杂性

线性大小的容器
原文:
Linear in the size of the container
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里