Steppable 0.0.1
A CAS project written from scratch in C++
Loading...
Searching...
No Matches
steppable::concepts::Presentable Concept Reference

Represents any object with a .present() method. More...

#include <concepts.hpp>

Concept definition

template<typename ObjectT>
concept steppable::concepts::Presentable = requires(ObjectT object) {
{ object.present() } -> std::same_as<std::string>;
}
Represents any object with a .present() method.
Definition concepts.hpp:43

Detailed Description

Represents any object with a .present() method.

Untitled