Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::ranges::transform_view<V,F>::size

      From cppreference.com
      <cpp‎ |ranges‎ |transform view
       
       
      Ranges library
      Range adaptors
       
      std::ranges::transform_view
      Member functions
      transform_view::size
      Deduction guides
      Iterator
      Sentinel
       
      constexprauto size() requiresranges::sized_range<V>;
      (1)(since C++20)
      constexprauto size()const requiresranges::sized_range<const V>;
      (2)(since C++20)

      Returns the number of elements. Equivalent toranges::size(base_).

      Contents

      [edit]Return value

      The number of elements.

      [edit]Notes

      IfV does not modelforward_range,size() might not be well-defined after a call tobegin().

      [edit]Example

      Run this code
      #include <cassert>#include <cctype>#include <iostream>#include <ranges>#include <string> int main(){std::string s{"The length of this string is 42 characters"};auto to_upper{[](unsignedchar c)->char{returnstd::toupper(c);}};auto tv{std::ranges::transform_view{s, to_upper}};for(assert(tv.size()==42);constauto c: tv)std::cout<< c;}

      Output:

      THE LENGTH OF THIS STRING IS 42 CHARACTERS

      [edit]See also

      returns an integer equal to the size of a range
      (customization point object)[edit]
      returns a signed integer equal to the size of a range
      (customization point object)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/ranges/transform_view/size&oldid=181347"

      [8]ページ先頭

      ©2009-2025 Movatter.jp