Created
February 26, 2025 21:52
-
-
Save Zaryob/e7798f15b4109d8818b5cf0ba096c914 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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