template struct integral_constant { static constexpr T value = v; typedef T value_type; typedef integral_constant type; // using injected-class-name constexpr operator value_type() const noexcept { return value; } }; using false_type = integral_constant; using true_type = integral_constant; template struct is_same : false_type {}; template struct is_same : true_type {};