Problem Statement
In Swift 6.2 what new type enables fixed-size arrays allocated inline for performance critical code?
Explanation
Swift 6.2 introduces `InlineArray` which allows you to declare fixed size arrays whose storage is inline (stack or inside another type) improving performance and memory layout.
Practice Sets
This question appears in the following practice sets: