template <typename Type>

struct IsPointer

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

Indicates whether or not a given template `Type` is a pointer type.

The `constexpr` expression `IsPointer

<Type

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

would be `false`.

Template Parameters

Type A type to check if is a pointer.