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

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

 
 
 
std::array
成员函数
原文:
Member functions
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
元素的访问
原文:
Element access
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
array::at
array::operator[]
array::front
array::back
array::data
迭代器
原文:
Iterators
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
array::begin
array::cbegin
array::end
array::cend
array::rbegin
array::crbegin
array::rend
array::crend
容量
原文:
Capacity
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
array::empty
array::size
array::max_size
修饰符
原文:
Modifiers
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
array::fill
array::swap
非成员函数
原文:
Non-member functions
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
get
swap
Helper类
原文:
Helper classes
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
tuple_size
tuple_element
 

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

template<  >

bool operator==( array<>& lhs,

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

bool operator!=( array<>& lhs,

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

bool operator<( array<>& lhs,

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

bool operator<=( array<>& lhs,

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

bool operator>( array<>& lhs,

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

bool operator>=( array<>& lhs,

                 array<>& 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 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 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里