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

FreeBSD Manual Pages

  
 
  

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

NAME
       std::basic_const_iterator::base - std::basic_const_iterator::base

Synopsis
	  constexpr const Iter&	base() const& noexcept;	(1) (since C++23)
	  constexpr Iter base()	&&;			(2) (since C++23)

	  Returns the underlying base iterator.

	  1) Returns a reference to the	underlying iterator.
	  2) Move constructs the return	value from the underlying iterator.

Parameters
	  (none)

Return value
	  1) A reference to the	underlying iterator.
	  2) An	iterator move constructed from the underlying iterator.

Example
	   This	section	is incomplete
	   Reason: no example

See also
	  operator*  accesses the pointed-to element
	  operator-> (public member function)

Category:
	    * Todo no example

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

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

home | help