Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::ranges::chunk_by_view<V,Pred>::end

      From cppreference.com
      <cpp‎ |ranges‎ |chunk by view
       
       
      Ranges library
      Range adaptors
       
       
      constexprauto end();
      (since C++23)

      Returns aniterator or asentinel representing the end of thechunk_by_view.

      Equivalent to:

      ifconstexpr(ranges::common_range<V>)return/*iterator*/(*this,ranges::end(base_),ranges::end(base_));elsereturnstd::default_sentinel;

      Contents

      [edit]Parameters

      (none)

      [edit]Return value

      Aniterator to the element following the last element, or a sentinel which compares equal to the end iterator.

      [edit]Notes

      end() returns an iterator if and only if the underlying view is acommon_range:chunk_by_view<V,Pred> modelscommon_range wheneverV does.

      [edit]Example

      This section is incomplete
      Reason: no example

      [edit]See also

      returns an iterator to the beginning
      (public member function)[edit]
      returns a sentinel indicating the end of a range
      (customization point object)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/ranges/chunk_by_view/end&oldid=161747"

      [8]ページ先頭

      ©2009-2026 Movatter.jp