One Framework 0.1.0
RoboMaster嵌入式框架“一键”解决方案,为你的“创意”服务。
载入中...
搜索中...
未找到
OF::Printable 概念参考

#include <Topic.hpp>

概念定义

template<typename T>
concept OF::Printable = requires
{
{ std::declval<T>().format() } -> std::convertible_to<std::string&&>;
}
定义 Topic.hpp:13