Sparkplug B C++ Library 1.0.0
Modern C++-23 implementation of Eclipse Sparkplug B 2.2 specification
Loading...
Searching...
No Matches
sparkplug::SparkplugSignedInteger Concept Reference

Signed integer types supported by Sparkplug B. More...

#include <payload_builder.hpp>

Concept definition

template<typename T>
concept sparkplug::SparkplugSignedInteger = std::same_as<std::remove_cvref_t<T>, int8_t> ||
std::same_as<std::remove_cvref_t<T>, int16_t> ||
std::same_as<std::remove_cvref_t<T>, int32_t> ||
std::same_as<std::remove_cvref_t<T>, int64_t>
Signed integer types supported by Sparkplug B.

Detailed Description

Signed integer types supported by Sparkplug B.

Definition at line 23 of file payload_builder.hpp.