sandbox
Loading...
Searching...
No Matches
sbx::utility::character Concept Reference

A concept that represents a character type. More...

#include <hash.hpp>

Concept definition

template<typename Type>
concept sbx::utility::character = std::same_as<Type, char> || std::same_as<Type, wchar_t> || std::same_as<Type, char8_t> || std::same_as<Type, char16_t> || std::same_as<Type, char32_t>
A concept that represents a character type.
Definition: hash.hpp:82

Detailed Description

A concept that represents a character type.

Template Parameters
TypeThe type to check.