FE 0.13.1
Header-only C++ frontend library
Loading...
Searching...
No Matches
fe::Stacklike Concept Reference

Something which behaves like std::stack or std::priority_queue. More...

#include <fe/container.h>

Concept definition

template<class C>
concept Stacklike = requires(C c) {
c.top();
c.pop();
}
Something which behaves like std::stack or std::priority_queue.
Definition container.h:12

Detailed Description

Something which behaves like std::stack or std::priority_queue.

Definition at line 12 of file container.h.