std::span<T,Extent>::first
From cppreference.com
| template< std::size_t Count > constexpr std::span<element_type, Count> first() const; |
(C++20以降) | |
| constexpr std::span<element_type, std::dynamic_extent> first( size_type Count ) const; |
(C++20以降) | |
このspanの最初のCount要素に対するビューを取得するspanを返します。プログラムは、Count > Extentの場合、不正形式となります。Count > size()の場合、動作は未定義です。
[編集] 返り値
*thisの最初のCount要素に対するビューであるspan rを返します。このとき、r.data() == this->data() && r.size() == Countが成り立ちます。
[編集] 例
このコードを実行
#include <iostream> #include <ranges> #include <span> #include <string_view> void print(std::string_view const title, std::ranges::forward_range auto const& container) { auto size{std::size(container)}; std::cout << title << '[' << size << "]{"; for (auto const& elem : container) std::cout << elem << (--size ? ", " : ""); std::cout << "};\n"; } void run_game(std::span<const int> span) { print("span: ", span); std::span<const int, 5> span_first = span.first<5>(); print("span.first<5>(): ", span_first); std::span<const int, std::dynamic_extent> span_first_dynamic = span.first(4); print("span.first(4): ", span_first_dynamic); } int main() { int a[8]{1, 2, 3, 4, 5, 6, 7, 8}; print("int a", a); run_game(a); }
出力
int a[8]{1, 2, 3, 4, 5, 6, 7, 8};
span: [8]{1, 2, 3, 4, 5, 6, 7, 8};
span.first<5>(): [5]{1, 2, 3, 4, 5};
span.first(4): [4]{1, 2, 3, 4};[編集] 関連項目
シーケンスの最後の N 個の要素からなるサブスパンを取得します(public member function) | |
| サブスパンを取得します (public member function) |