We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
So that we can optionally drop the type prefixes, currently clang-only. https://clang.llvm.org/docs/AttributeReference.html#overloadable
// instead of uset_int a = uset_int_init(NULL, NULL); // integral types have default methods uset_int_insert(&a, 1); // do #define CTL_OVERLOADABLE #define T int #include <ctl/unordered_set.h> uset_int a = uset_int_init(NULL, NULL); insert(&a, 1);
See also _Generic support via #4
_Generic
The text was updated successfully, but these errors were encountered:
rurban
No branches or pull requests
So that we can optionally drop the type prefixes, currently clang-only.
https://clang.llvm.org/docs/AttributeReference.html#overloadable
See also
_Generic
support via #4The text was updated successfully, but these errors were encountered: