22 Şubat 2021 Pazartesi

std::is_arithmetic

Örnek
Şöyle yaparız
#include <cmath>
#include <type_traits>

template<typename T>
concept Arithmetic = std::is_arithmetic_v<T>;

template<Arithmetic T>
struct Vector2D
{
  T X = 0;
  T Y = 0;
  ...
};

Hiç yorum yok:

Yorum Gönder