TrinityCore
Loading...
Searching...
No Matches
ByteBufferNumeric Concept Reference

#include <ByteBuffer.h>

Concept definition

template<typename T>
concept ByteBufferNumeric = std::same_as<T, int8> || std::same_as<T, uint8>
|| std::same_as<T, int16> || std::same_as<T, uint16>
|| std::same_as<T, int32> || std::same_as<T, uint32>
|| std::same_as<T, int64> || std::same_as<T, uint64>
|| std::same_as<T, float> || std::same_as<T, double>
|| std::same_as<T, char> || std::is_enum_v<T>

Detailed Description

Definition at line 55 of file ByteBuffer.h.