template <typename Type>

struct IsInt

Defined at line 128 of file ../../third_party/openthread/src/core/common/type_traits.hpp

Indicates whether or not a given template `Type` is a signed integer type (`int8_t`, `int16_t`, `int32_t`, or

`int64_t`).

The `constexpr` expression `IsInt

<Type

>::kValue` would be `true` when the `Type` is a signed int, otherwise it

would be `false`.

Template Parameters

Type A type to check if is a signed integer type.