HikoGUI
Select Version:
⚠️ This documents the main development branch of HikoGUI. It might differ from release versions.
A low latency retained GUI
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
hi::v1::static_castableable Concept Reference

Concept definition

template<typename From, typename To>
concept hi::v1::static_castableable = requires(From v) {
{
static_cast<To>(v)
} -> std::convertible_to<To>;
}
Definition concepts.hpp:106