Home
last modified time | relevance | path

Searched defs:NumericLimits (Results 1 – 1 of 1) sorted by relevance

/openthread-2.7.6/src/core/common/
Dnumeric_limits.hpp47 template <typename Type> struct NumericLimits struct
53 template <> struct NumericLimits<int8_t> struct
55 static constexpr int8_t kMin = INT8_MIN;
56 static constexpr int8_t kMax = INT8_MAX;
59 template <> struct NumericLimits<int16_t> struct
61 static constexpr int16_t kMin = INT16_MIN;
62 static constexpr int16_t kMax = INT16_MAX;
65 template <> struct NumericLimits<int32_t> struct
67 static constexpr int32_t kMin = INT32_MIN;
68 static constexpr int32_t kMax = INT32_MAX;
[all …]