Skip to content

Instantly share code, notes, and snippets.

@Zaryob
Created February 26, 2025 21:52
Show Gist options
  • Save Zaryob/e7798f15b4109d8818b5cf0ba096c914 to your computer and use it in GitHub Desktop.
Save Zaryob/e7798f15b4109d8818b5cf0ba096c914 to your computer and use it in GitHub Desktop.
template <typename T>
concept Addable = requires(T a, T b) {
a + b; // T türü toplama işlemini desteklemeli
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment