template <typename FirstType, typename SecondType>

struct IsSame

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

Indicates whether or not a given template `FirstType is the same as `SecondType`.

The `constexpr` expression `IsSame

<FirstType

, SecondType>::kValue` would be `true` when the two types are the same,

otherwise it would be `false`.

Template Parameters

FirstType The first type.
SecondType The second type.