std::char_traits::eq, std::char_traits::lt
提供:cppreference.com
< cpp | string | char traits
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| bool eq( CharT a, CharT b ); |
(1) | (C + + 11時まで) |
| constexpr bool eq( CharT a, CharT b ); |
(1) | (C + + 11以来) |
| bool lt( CharT a, CharT b ); |
(2) | (C + + 11時まで) |
| constexpr bool lt( CharT a, CharT b ); |
(2) | (C + + 11以来) |
2文字を比較.
Original:
Compares two characters.
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)
平等のための
aとbを比較.Original:
Compares
a and b for equality.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.
2)
彼らは完全に順序付けされるような方法で
aとbを比較.Original:
Compares
a and b in such a way that they are totally ordered.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.
目次 |
[編集] パラメータ
| a, b | - | 文字値と比較する
Original: character values 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
aいただくとb等しい、falseその他のとき.Original:
true if
a and b are equal, 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.
2)
true場合
aです'より少ないb、falseその他のとき.Original:
true if
a is less than b, 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.
[編集] 例外
[編集] 複雑
定数.
Original:
Constant.
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.