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

FreeBSD Manual Pages

  
 
  

home | help
std::queue::pop(3)	      C++ Standard Libary	    std::queue::pop(3)

NAME
       std::queue::pop - std::queue::pop

Synopsis
	  void pop();

	  Removes  an  element	from the front of the queue. Effectively calls
       c.pop_front()

Parameters
	  (none)

Return value
	  (none)

Complexity
	  Equal	to the complexity of Container::pop_front.

Example
See also
	  emplace constructs element in-place at the end
	  (C++11) (public member function)
	  push	  inserts element at the end
		  (public member function)
	  front	  access the first element
		  (public member function)

http://cppreference.com		  2022.07.31		    std::queue::pop(3)

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

home | help