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
c3 is leaning heavily into macros and compile time features. it would be helpful for code generation if there were proper compile time mutable arrays which would make it easier to use, as well as being less bug prone.
eg:
int $value = 100;
int[20] $arr;
$arr[5] += $value;
i believe currently, you have to extract the value at index, modify it, then build a new array by concatenation.
The text was updated successfully, but these errors were encountered:
c3 is leaning heavily into macros and compile time features. it would be helpful for code generation if there were proper compile time mutable arrays which would make it easier to use, as well as being less bug prone.
eg:
i believe currently, you have to extract the value at index, modify it, then build a new array by concatenation.
The text was updated successfully, but these errors were encountered: