|
NexusForce 1.0.0
A Modern C++ Library with extended functionality, web components, and utility libraries
|
成员的完整列表,这些成员属于 stack< T, Sequence >,包括所有继承而来的类成员
| const_reference typedef | stack< T, Sequence > | |
| difference_type typedef | stack< T, Sequence > | |
| emplace(Args &&... args) | stack< T, Sequence > | inline |
| empty() const noexcept(noexcept(seq_.empty())) | stack< T, Sequence > | inline |
| equal_to(const stack &rhs) const noexcept(noexcept(seq_==rhs.seq_)) | stack< T, Sequence > | inline |
| less_than(const stack &rhs) const noexcept(noexcept(seq_< rhs.seq_)) | stack< T, Sequence > | inline |
| operator!=(const T &rhs) const noexcept(noexcept(!(derived().equal_to(rhs)))) | icomparable< T > | inline |
| operator<(const T &rhs) const noexcept(noexcept(derived().less_than(rhs))) | icomparable< T > | inline |
| operator<=(const T &rhs) const noexcept(noexcept(!(rhs.less_than(derived())))) | icomparable< T > | inline |
| operator==(const T &rhs) const noexcept(noexcept(derived().equal_to(rhs))) | icomparable< T > | inline |
| operator>(const T &rhs) const noexcept(noexcept(rhs.less_than(derived()))) | icomparable< T > | inline |
| operator>=(const T &rhs) const noexcept(noexcept(!(derived().less_than(rhs)))) | icomparable< T > | inline |
| pop() noexcept(noexcept(seq_.pop_back())) | stack< T, Sequence > | inline |
| push(const value_type &value) | stack< T, Sequence > | inline |
| push(value_type &&value) | stack< T, Sequence > | inline |
| reference typedef | stack< T, Sequence > | |
| size() const noexcept(noexcept(seq_.size())) | stack< T, Sequence > | inline |
| size_type typedef | stack< T, Sequence > | |
| stack(const Sequence &seq) | stack< T, Sequence > | inlineexplicit |
| stack(Sequence &&seq) noexcept(is_nothrow_move_constructible_v< Sequence >) | stack< T, Sequence > | inlineexplicit |
| swap(stack &other) noexcept(is_nothrow_swappable_v< Sequence >) | stack< T, Sequence > | inline |
| top() noexcept(noexcept(seq_.back())) | stack< T, Sequence > | inline |
| top() const noexcept(noexcept(seq_.back())) | stack< T, Sequence > | inline |
| value_type typedef | stack< T, Sequence > |