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

FreeBSD Manual Pages

  
 
  

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

NAME
       std::stack::pop - std::stack::pop

Synopsis
	  void pop();

	  Removes   the	  top	element	 from  the  stack.  Effectively	 calls
       c.pop_back()

Parameters
	  (none)

Return value
	  (none)

Complexity
	  Equal	to the complexity of Container::pop_back.

Example
See also
	  emplace constructs element in-place at the top
	  (C++11) (public member function)
	  push	  inserts element at the top
		  (public member function)
	  top	  accesses the top element
		  (public member function)

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

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

home | help