std::span<T,Extent>:: first
|
template
<
std::
size_t
Count
>
constexpr std:: span < element_type, Count > first ( ) const ; |
(1) | (depuis C++20) |
|
constexpr
std::
span
<
element_type,
std::
dynamic_extent
>
first ( size_type count ) const ; |
(2) | (depuis C++20) |
Obtient une sous-vue sur les premiers Count ou count éléments de cette plage.
|
Si Count > size ( ) ou count > size ( ) est true , le comportement est indéfini. |
(jusqu'en C++26) |
|
Si Count > size ( ) ou count > size ( ) est true :
|
(depuis C++26) |
Table des matières |
Paramètres
| count | - | le nombre d'éléments de la sous-vue |
Valeur de retour
Exemple
#include <iostream> #include <ranges> #include <span> #include <string_view> void print(const std::string_view title, const std::ranges::forward_range auto& container) { auto size{std::size(container)}; std::cout << title << '[' << size << "]{"; for (const auto& 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); }
Sortie :
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};
Voir aussi
obtient un sous-span constitué des derniers
N
éléments de la séquence
(fonction membre publique) |
|
|
obtient un sous-span
(fonction membre publique) |