A hack for fixed-size arrays in Swift

Swift doesn’t have a built-in type for fixed-size, stack-allocated arrays. The standard library uses code generation to work around this limitation for internal use. Read more

Similar