operator==,!=,<,<=,>,>=(std::array)
提供: cppreference.com
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
テンプレートのループを検出しました: テンプレート:include page
template< > bool operator==( array<>& lhs, |
(1) | |
template< > bool operator!=( array<>& lhs, |
(2) | |
template< > bool operator<( array<>& lhs, |
(3) | |
template< > bool operator<=( array<>& lhs, |
(4) | |
template< > bool operator>( array<>& lhs, |
(5) | |
template< > bool operator>=( array<>& lhs, |
(6) | |
2つの容器の内容を比較.
Original:
Compares the contents of two containers.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
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)
lhs
の内容を比較し、辞書的にrhs
。比較はstd::lexicographical_compareと同等の機能によって実行されます.Original:
Compares the contents of
lhs
and rhs
lexicographically. The comparison is performed by a function equivalent to std::lexicographical_compare.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] パラメータ
lhs, rhs | - | その内容は比較するコンテナ
Original: containers whose contents to compare The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
1)trueコンテナの内容が同等であるかどうか、そうでなければfalse
2) Original:
true if the contents of the containers are equivalent, false otherwise
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
trueコンテナの内容が等しくない場合、falseそうでなければ
3) Original:
true if the contents of the containers are not equivalent, false otherwise
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
true
4) lhs
の内容を辞書であればrhs
の内容より小さい、falseそうでなければOriginal:
true if the contents of the
lhs
are lexicographically less than the contents of rhs
, false otherwiseThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
true
5) lhs
の内容を辞書であれば未満や等しいrhs
の内容は、falseそうでなければOriginal:
true if the contents of the
lhs
are lexicographically less than or equal the contents of rhs
, false otherwiseThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
true
6) lhs
の内容を辞書rhs
の内容より'大きい場合、falseそうでなければOriginal:
true if the contents of the
lhs
are lexicographically greater than the contents of rhs
, false otherwiseThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
true
lhs
の内容を辞書であればや等しいより大きい'rhs
の内容は、falseそうでなければOriginal:
true if the contents of the
lhs
are lexicographically greater than or equal the contents of rhs
, false otherwiseThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] 複雑
容器の大きさに比例
Original:
Linear in the size of the container
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.