std::flat_multimap<Key,T,Compare,KeyContainer,MappedContainer>::size
From cppreference.com
< cpp | コンテナ | flat_multimap
| size_type size() const noexcept; |
(C++23から) | |
コンテナアダプター内の要素数を返します。これは、return c.keys.size() と同等です。
目次 |
[ 編集 ] パラメータ
(なし)
[ 編集 ] 戻り値
コンテナアダプタ内の要素数。
[ 編集 ] 計算量
定数。
[ 編集 ] 例
このコードを実行
#include <cassert> #include <flat_map> int main() { std::flat_multimap<int, char> nums{{1, 'a'}, {1, 'b'}, {2, 'c'}, {2, 'd'}}; assert(nums.size() == 4); }
[ 編集 ] 関連項目
| コンテナアダプタが空かどうかをチェックする (public メンバ関数) | |
| (C++17)(C++20) |
コンテナまたは配列のサイズを返す (関数テンプレート) |
| 可能な最大要素数を返す (public メンバ関数) |