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

FreeBSD Manual Pages

  
 
  

home | help
std::ranges...erator::base(3) C++ Standard Libarystd::ranges...erator::base(3)

NAME
       std::ranges::enumerate_view::iterator::base    -	  std::ranges::enumer-
       ate_view::iterator::base

Synopsis
	  constexpr const ranges::iterator_t<Base>&  base()  const&  noexcept;
       (1) (since C++23)
	  constexpr	    ranges::iterator_t<Base>	     base()	   &&;
       (2) (since C++23)

	  Returns the underlying iterator. Let current_	be the underlying  it-
       erator.

	  1) Equivalent	to: return current_;.
	  2) Equivalent	to: return std::move(current_);.

Parameters
	  (none)

Return value
	  An iterator to the current element in	enumerate_view.

Example
	   This	section	is incomplete
	   Reason: no example

Category:
	    * Todo no example

http://cppreference.com		  2024.06.10	 std::ranges...erator::base(3)

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

home | help