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

FreeBSD Manual Pages

  
 
  

home | help
std::ranges...nt_view::end(3) C++ Standard Libarystd::ranges...nt_view::end(3)

NAME
       std::ranges::adjacent_view::end - std::ranges::adjacent_view::end

Synopsis
	  constexpr  auto  end()  requires  (!__SimpleView<V>);		   (1)
       (since C++23)
	  constexpr auto end()	const  requires	 ranges::range<const  V>;  (2)
       (since C++23)

	  Returns  an iterator or a sentinel representing the end of the adja-
       cent_view.

	  Let base_ be the underlying view.

	  1) Equivalent	to:

	if constexpr (ranges::common_range<V>)
	    return /*iterator*/<false>(__as_sentinel{},	 ranges::begin(base_),
       ranges::end(base_));
	else
	    return /*sentinel*/<false>(ranges::end(base_));

	  2) Equivalent	to:

	if constexpr (ranges::common_range<const V>)
	    return  /*iterator*/<true>(__as_sentinel{},	 ranges::begin(base_),
       ranges::end(base_));
	else
	    return /*sentinel*/<true>(ranges::end(base_));

Parameters
	  (none)

Return value
	  An iterator to the element following the last	element, if the	under-
       lying view V
	  models common_range. Otherwise, a sentinel which compares  equal  to
       the end iterator.

Notes
	  ranges::adjacent_view<V,N> models common_range whenever the underly-
       ing view	V does.

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...nt_view::end(3)

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

home | help