FreeBSD Manual Pages
std::queue::push(3) C++ Standard Libary std::queue::push(3) NAME std::queue::push - std::queue::push Synopsis void push( const value_type& value ); void push( value_type&& value ); (since C++11) Pushes the given element value to the end of the queue. 1) Effectively calls c.push_back(value) 2) Effectively calls c.push_back(std::move(value)) Parameters value - the value of the element to push Return value (none) Complexity Equal to the complexity of Container::push_back. Example See also emplace constructs element in-place at the end (C++11) (public member function) pop removes the first element (public member function) http://cppreference.com 2022.07.31 std::queue::push(3)
NAME | Synopsis | Parameters | Return value | Complexity | Example | See also
Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=std::queue::push&sektion=3&manpath=FreeBSD+Ports+15.0>
