constexpr size_type size_bytes() const noexcept;
概要
参照している範囲のバイト数を取得する。
戻り値
以下と等価:
return size() * sizeof(element_type);
例外
投げない
計算量
定数時間
例
出力
バージョン
言語
- C++20
処理系
- Clang: 9.0 ✅
- GCC: ??
- Visual C++: ??
constexpr size_type size_bytes() const noexcept;
参照している範囲のバイト数を取得する。
以下と等価:
return size() * sizeof(element_type);
投げない
定数時間