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::nullable Concept Reference

True if T can be assigned with a nullptr. More...

#include <hikogui/utility/concepts.hpp>

Concept definition

template<typename T>
concept hi::v1::nullable = requires(T& a) { a = nullptr; }
True if T can be assigned with a nullptr.
Definition concepts.hpp:149

Detailed Description

True if T can be assigned with a nullptr.