CeresEngine 0.2.0
A game development framework
Loading...
Searching...
No Matches
CeresEngine::ConvertibleToString Concept Reference

A concept that checks if the type T is convertible to a String by using a StringConverter. More...

#include <CeresEngine/Foundation/String.hpp>

Concept definition

template<typename T>
concept CeresEngine::ConvertibleToString = requires(T value) { StringConversion<T>::toString(value); }
A concept that checks if the type T is convertible to a String by using a StringConverter.
Definition String.hpp:380

Detailed Description

A concept that checks if the type T is convertible to a String by using a StringConverter.