std::multiset::find
提供:cppreference.com
|
|
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. |
| iterator find( const Key& key ); |
||
| const_iterator find( const Key& key ) const; |
||
キー
keyを持つ要素を検索します。 Original:
Finds an element with key
key. 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.
目次 |
[編集] パラメータ
| key | - | 検索する要素のキー値
Original: key value of the element to search for The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
キー
key持つ要素を指すイテレータ。このような要素が見つからない場合は、過去ツーエンド(end()を参照)イテレータが返されます.Original:
Iterator to an element with key
key. If no such element is found, past-the-end (see end()) iterator is returned.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.
[編集] 複雑
Logarithmic in the size of the container.
[編集] も参照してください
| 特定のキーと一致する要素の数を返します Original: returns the number of elements matching specific key The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (パブリックメンバ関数) | |
| 特定のキーと一致する要素の範囲を返します Original: returns range of elements matching a specific key The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (パブリックメンバ関数) | |