drop_view
クラス (C++ 標準ライブラリ)
範囲の最初の N 要素を除外するビューを作成します。
構文
template<ranges::view V>
class drop_view : public ranges::view_interface<drop_view<V>>;
テンプレート パラメーター
V
基になるビューの型。
特性の表示
以下の項目の説明については、 View クラスの特性を参照してください。
特徴 | 説明 |
---|---|
範囲アダプター | views::drop |
基になる範囲 | output_range 以上を満たす必要があります |
要素の種類 | 基になる範囲と同じ |
反復子カテゴリの表示 | 基になる範囲と同じ |
サイズ | 基になる範囲が満たされる場合のみ sized_range |
const 対応 |
基になる範囲が const 可能であり、 random_access_range を満たしている場合にのみ、 sized_range |
共通範囲 | 基になる範囲が common_range |
借用範囲 | 基になる範囲が満たされる場合のみ borrowed_range |
メンバー
メンバー関数 | 説明 |
---|---|
コンストラクターC++20 | drop_view を構築します。 |
base C++20 |
基になるビューを取得します。 |
begin C++20 |
最初の要素を指す反復子を取得します。 |
end C++20 |
ビューの最後にあるセンチネルを取得します。 |
size C++20 |
このビューの要素の数を取得します。 基になる範囲は、 sized_range を満たす必要があります。 |
継承の対象 view_interface |
説明 |
back C++20 |
最後の要素を取得します。 |
data C++20 |
最初の要素へのポインターを取得します。 |
empty C++20 |
drop_view が空かどうかをテストします。 |
front C++20 |
最初の要素を取得します。 |
operator[] C++20 |
指定した位置にある要素を取得します。 |
operator bool C++20 |
drop_view が空でないかどうかをテストします。 |
要件
Header: <ranges>
(C++20 以降)
名前空間: std::ranges
コンパイラ オプション: /std:c++20
以降が必要です。
コンストラクター
のインスタンスを構築する drop_view
template<ranges::view V>
class drop_view : public ranges::view_interface<drop_view<V>>
テンプレート パラメーター
V
基になるビューの型。
戻り値
基になる範囲のビュー。前面から指定した数の要素を除きます。
基になる範囲に存在する要素よりも多くの要素を削除するように指定すると、 empty_view
が返されます。
解説
drop_view
を作成する最善の方法は、views::drop
範囲アダプターを使用することです。 範囲アダプターは、ビュー クラスを作成するための目的の方法です。 独自のカスタム ビューの種類を作成する場合は、ビューの種類が公開されます。
例: drop_view
// requires /std:c++20 or later
#include <ranges>
#include <iostream>
#include <vector>
int main()
{
std::vector<int> v{ 1, 2, 3, 4, 5 };
auto newView = std::views::drop(v, 3);
for (auto e : newView) // outputs 4 5
{
std::cout << e << ' ';
}
std::cout << '\n';
auto numbers = std::views::iota(0) | std::views::take(10); // generate a view of 10 integers
for (auto i : numbers | std::views::drop(5)) // use the '|' syntax to create a drop_view
{
std::cout << i << ' '; // outputs 5 6 7 8 9
}
}
4 5
5 6 7 8 9
base
基になるビューのコピーを取得します。
// Uses a copy constructor to return the underlying view
constexpr V base() const& requires std::copy_constructible<V>;
// Uses a move constructor to return the underlying view
constexpr V base() &&;
パラメーター
ありません。
戻り値
基になるビュー。
begin
drop_view
内の最初の要素を指す反復子を取得します。
constexpr auto begin()
requires (!(Simple_view<V> && ranges::random_access_range<const V> && ranges::sized_range<const V>));
constexpr auto begin() const
requires ranges::random_access_range<const V> && ranges::sized_range<const V>;
パラメーター
ありません。
戻り値
drop_view
内の最初の要素を指す反復子。
end
の最後にセンチネルを取得します。 drop_view
constexpr auto end() requires (!Simple_view<V>);
constexpr auto end() const requires ranges::range<const V>;
パラメーター
ありません。
戻り値
drop_view
の最後の要素に続く sentinel:
size
drop_view
内の要素の数を取得します。
constexpr auto size() requires ranges::sized_range<V>;
constexpr auto size() const requires ranges::sized_range<const V>;
パラメーター
ありません。
戻り値
drop_view
にある要素の数。
解説
基になる範囲は、 sized_range
を満たす必要があります。