Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
std::ranges...m_view::end(3)  C++ Standard Libary std::ranges...m_view::end(3)

NAME
       std::ranges::zip_transform_view::end	 -     std::ranges::zip_trans-
       form_view::end

Synopsis
	  constexpr  auto  end();					   (1)
       (since C++23)
	  constexpr auto end() const

	      requires	ranges::range<const  /*InnerView*/>  &&		   (2)
       (since C++23)
		       std::regular_invocable<const F&,

			   ranges::range_reference_t<const Views>...>;

	  Returns an iterator or a sentinel that compares equal	to the end it-
       erator of the
	  zip_transform_view.

	  Let zip_ denote the underlying tuple of views:

	  1) Equivalent	to:
	  if constexpr (ranges::common_range</*InnerView*/>)

	      return /*iterator*/<false>(*this,	zip_.end());
	  else

	      return /*sentinel*/<false>(zip_.end());
	  2) Equivalent	to:
	  if constexpr (ranges::common_range<const /*InnerView*/>)

	      return /*iterator*/<true>(*this, zip_.end());
	  else

	      return /*sentinel*/<true>(zip_.end());

Parameters
	  (none)

Return value
	  An iterator or sentinel  representing	 the  end  of  the  zip_trans-
       form_view, as described
	  above.

Example
	   This	section	is incomplete
	   Reason: no example

See also
	  begin	      returns an iterator to the beginning
	  (C++23)     (public member function)
	  ranges::end returns a	sentinel indicating the	end of a range
	  (C++20)     (customization point object)

Category:
	    * Todo no example

http://cppreference.com		  2024.06.10	  std::ranges...m_view::end(3)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=std::ranges::zip_transform_view::end&sektion=3&manpath=FreeBSD+Ports+15.1.quarterly>

home | help