ゴミ箱
|
#include <type_traits.hpp>
Determine if T
meets the requirements of DynamicBuffer.
Metafunctions are used to perform compile time checking of template types. This type will be std::true_type
if T
meets the requirements, else the type will be std::false_type
.
Use with static_assert
:
Use with std::enable_if
(SFINAE):