You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use C11 _Generic type-specializers to get rid of the longer names, when requested.
Thus vec_int_init_from(&vec) would be vec_init_from(&vec) or even init_from(&vec)
We cannot make that optional as with integral methods, but only user-requested, and only for supporting compilers. (most)
The text was updated successfully, but these errors were encountered:
Use C11
_Generic
type-specializers to get rid of the longer names, when requested.Thus
vec_int_init_from(&vec)
would bevec_init_from(&vec)
or eveninit_from(&vec)
We cannot make that optional as with integral methods, but only user-requested, and only for supporting compilers. (most)
The text was updated successfully, but these errors were encountered: