Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::ranges::views::common,std::ranges::common_view

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

          requires(notranges::common_range<V> and
                   std::copyable<ranges::iterator_t<V>>)
      class common_view

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

         inlineconstexpr/* unspecified */ common=/* unspecified */;

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

          requires/* see below */

      constexprranges::viewauto common( R&& r);
      (since C++20)
      1) Adapts a givenview with different types for iterator/sentinel pair into aview that is also acommon_range. Acommon_view always has the same iterator/sentinel type.
      2)RangeAdaptorObject. Lete be a subexpression. Then the expressionviews::common(e) isexpression-equivalent to:
      • views::all(e), if it is a well-formed expression anddecltype((e)) modelscommon_range;
      • common_view{e} otherwise.

      Contents

      [edit]Data members

      Member Description
      Vbase_(private) the underlying view
      (exposition-only member object*)

      [edit]Member functions

      constructs acommon_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 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]Helper templates

      template<class T>

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

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

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

      [edit]Notes

      common_view can be useful for working with legacy algorithms that expect the iterator and sentinel are of the same type.

      [edit]Example

      Run this code
      #include <initializer_list>#include <iostream>#include <iterator>#include <list>#include <numeric>#include <ranges> int main(){auto v1={1,2,3,4,5};auto i1=std::counted_iterator{v1.begin(),std::ssize(v1)};auto r1= std::ranges::subrange{i1,std::default_sentinel};//  auto e1 = std::accumulate(r1.begin(), r1.end(), 0); // error: "common range" requiredauto c1= std::ranges::common_view{r1};std::cout<<"accumulate: "<<std::accumulate(c1.begin(), c1.end(),0)<<'\n'; // inherited from ranges::view_interface:std::cout<<"c1.front(): "<< c1.front()<<'\n';std::cout<<"c1.back(): "<< c1.back()<<'\n';std::cout<<"c1.data(): "<< c1.data()<<'\n';std::cout<<"c1[0]: "<< c1[0]<<'\n'; auto v2=std::list{1,2,3,4,5};auto i2=std::counted_iterator{v2.begin(),std::ssize(v2)};auto r2= std::ranges::subrange{i2,std::default_sentinel};//  auto e2 = std::accumulate(r2.begin(), r2.end(), 0); // error: "common range" requiredauto c2= std::ranges::common_view{ r2};std::cout<<"accumulate: "<<std::accumulate(c2.begin(), c2.end(),0)<<'\n'; // inherited from ranges::view_interface:std::cout<<"c2.front(): "<< c2.front()<<'\n';//  auto e3 = c2.back(); // error: "bidirectional range" required//  auto e4 = c2.data(); // error: "contiguous range" required//  auto e5 = c2[0];     // error: "random access range" required}

      Possible output:

      accumulate: 15c1.front(): 1c1.back(): 5c1.data(): 0x7f19937f00d0c1[0]: 1accumulate: 15c2.front(): 1

      [edit]Defect reports

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

      DRApplied toBehavior as publishedCorrect behavior
      LWG 3494C++20common_view was never aborrowed_rangeit is aborrowed_range if its underlying view is

      [edit]See also

      specifies that a range has identical iterator and sentinel types
      (concept)[edit]
      adapts an iterator type and its sentinel into a common iterator type
      (class template)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/ranges/common_view&oldid=182387"

      [8]ページ先頭

      ©2009-2025 Movatter.jp