Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::ranges::views::take,std::ranges::take_view

      From cppreference.com
      <cpp‎ |ranges
       
       
      Ranges library
      Range adaptors
       
       
      Defined in header<ranges>
      template<ranges::view V>

      class take_view

         :publicranges::view_interface<take_view<V>>
      (1)(since C++20)
      namespace views{

         inlineconstexpr/* unspecified */ take=/* unspecified */;

      }
      (2)(since C++20)
      Call signature
      template<ranges::viewable_range R>

          requires/* see below */
      constexprranges::viewauto

          take( R&& r,ranges::range_difference_t<R> count);
      (since C++20)
      template<class DifferenceType>
      constexpr/* range adaptor closure */ take( DifferenceType&& count);
      (since C++20)
      1) A range adaptor that representsview of the elements from an underlying sequence, starting at the beginning and ending at a given bound.
      2)views::take is aRangeAdaptorObject. The expressionviews::take(e, f) results in a view that represents the firstf elements frome. The result is not necessarily atake_view.

      views::take(e, f) isexpression-equivalent to (whereT isstd::remove_cvref_t<decltype((e))> andD isranges::range_difference_t<decltype((e))>):

      (since C++23)
      • otherwise,take_view(e, f).
      In all cases,decltype((f)) must modelstd::convertible_to<D>.

      take_view models the conceptscontiguous_range,random_access_range,bidirectional_range,forward_range,input_range, andsized_range when the underlying viewV models respective concepts. It modelscommon_range when the underlying viewV models bothrandom_access_range andsized_range.

      Contents

      [edit]Data members

      Member Description
      Vbase_ the underlying view
      (exposition-only member object*)
      ranges::range_difference_t<V>count_ the number of elements to take
      (exposition-only member object*)

      [edit]Member functions

      constructs atake_view
      (public member function)[edit]
      returns a copy of the underlying (adapted) view
      (public member function)[edit]
      returns an iterator to the beginning
      (public member function)[edit]
      returns an iterator or a sentinel to the end
      (public member function)[edit]
      returns the number of elements, provided only if the underlying (adapted) range satisfiessized_range
      (public member function)[edit]
      returns the approximate size of the resultingapproximately_sized_range
      (public member function)[edit]
      Inherited fromstd::ranges::view_interface
      returns whether the derived view is empty, provided only if it satisfiessized_range orforward_range
      (public member function ofstd::ranges::view_interface<D>)[edit]
      (C++23)
      returns a constant iterator to the beginning of the range
      (public member function ofstd::ranges::view_interface<D>)[edit]
      (C++23)
      returns a sentinel for the constant iterator of the range
      (public member function ofstd::ranges::view_interface<D>)[edit]
      returns whether the derived view is not empty, provided only ifranges::empty is applicable to it
      (public member function ofstd::ranges::view_interface<D>)[edit]
      gets the address of derived view's data, provided only if its iterator type satisfiescontiguous_iterator
      (public member function ofstd::ranges::view_interface<D>)[edit]
      returns the first element in the derived view, provided if it satisfiesforward_range
      (public member function ofstd::ranges::view_interface<D>)[edit]
      returns the last element in the derived view, provided only if it satisfiesbidirectional_range andcommon_range
      (public member function ofstd::ranges::view_interface<D>)[edit]
      returns thenth element in the derived view, provided only if it satisfiesrandom_access_range
      (public member function ofstd::ranges::view_interface<D>)[edit]

      [edit]Deduction guides

      [edit]Nested classes

      (C++20)
      the sentinel type
      (exposition-only member class template*)

      [edit]Helper templates

      template<class T>

      constexprbool enable_borrowed_range<std::ranges::take_view<T>>=

         ranges::enable_borrowed_range<T>;
      (since C++20)

      This specialization ofranges::enable_borrowed_range makestake_view satisfyborrowed_range when the underlying view satisfies it.

      [edit]Example

      Run this code
      #include <algorithm>#include <iostream>#include <ranges> int main(){namespace views= std::views;auto print=[](char x){std::cout<< x;}; for(constchar nums[]{'1','2','3'};int n:views::iota(0,5)){std::cout<<"take("<< n<<"): ";// safely takes only upto min(n, nums.size()) elements:        std::ranges::for_each(nums| views::take(n), print);std::cout<<'\n';}}

      Output:

      take(0): take(1): 1take(2): 12take(3): 123take(4): 123

      [edit]Defect reports

      The following behavior-changing defect reports were applied retroactively to previously published C++ standards.

      DRApplied toBehavior as publishedCorrect behavior
      LWG 3407C++20views::take sometimes failed to
      construct a sized random access range
      the result type is adjusted so
      that construction is always valid
      LWG 3494C++20take_view was never aborrowed_rangeit is aborrowed_range if its underlying view is

      [edit]See also

      creates a subrange from an iterator and a count
      (customization point object)[edit]
      aview consisting of the initial elements of anotherview, until the first element on which a predicate returnsfalse
      (class template)(range adaptor object)[edit]
      copies a number of elements to a new location
      (algorithm function object)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/ranges/take_view&oldid=182449"

      [8]ページ先頭

      ©2009-2025 Movatter.jp