Reading List

Swift Proposal: InlineArray from Michael Tsai RSS feed.

Swift Proposal: InlineArray

SE-0453: This proposal introduces a new type to the standard library, InlineArray, which is a fixed-size array. This is analogous to the classical C arrays T[N], C++’s std::array<T, N>, and Rust’s arrays [T; N].[…]It’s important to understand that Array is a heap allocated growable data structure which can be expensive and unnecessary in some situations. […]