We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0759ed0 commit 1c7fc50Copy full SHA for 1c7fc50
README.md
@@ -267,6 +267,8 @@ You can print the content of a vector register like so:
267
268
- Be careful: `Vector128.Shuffle` is not the same as `Ssse3.Shuffle` nor is `Vector256.Shuffle` the same as `Avx2.Shuffle`. Prefer the latter.
269
- Similarly `Vector128.Shuffle` is not the same as `AdvSimd.Arm64.VectorTableLookup`, use the latter.
270
+- `stackalloc` arrays should probably not be used in class instances.
271
+- In C#, `struct` might be preferable to `class` instances as it makes it clear that the data is thread local.
272
273
## More reading
274
0 commit comments