template <typename Type>
struct IsUint
Defined at line 97 of file ../../third_party/openthread/src/core/common/type_traits.hpp
Indicates whether or not a given template `Type` is an unsigned integer type (`uint8_t`, `uint16_t`, `uint32_t`, or
`uint64_t`).
The `constexpr` expression `IsUint
<Type
>::kValue` would be `true` when the `Type` is an unsigned int, otherwise it
would be `false`.
Template Parameters
Type A type to check if is an unsigned integer type.