Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

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

      From cppreference.com
      <cpp‎ |ranges‎ |chunk by view
       
       
      Ranges library
      Range adaptors
       
       
      constexpr/*iterator*/ begin();
      (since C++23)

      Returns aniterator to the first element of thechunk_by_view.

      Equivalent to:

      ranges::iterator_t<V> iter; if(begin_.has_value())    iter= begin_.value();else{    iter=/*find_next*/(ranges::begin(base()));    begin_= iter;// caching} return/*iterator*/(*this,ranges::begin(base()), iter);

      The behavior is undefined if the underlying predicatepred_ does not contain a value.

      Contents

      [edit]Parameters

      (none)

      [edit]Return value

      Iterator to the first element.

      [edit]Notes

      In order to provide the amortized constant-time complexity required by therange concept, this function caches the result within the data memberbegin_ for use on subsequent calls.

      [edit]Example

      This section is incomplete
      Reason: no example

      [edit]See also

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

      [8]ページ先頭

      ©2009-2026 Movatter.jp