Swift 5: How to test Data(bytesNoCopy:count:deallocator:)?

Usually the "NoCopy" label is only a hint. The internal _Representation can store an InlineData with up to 14 bytes (64-bit arch) or 6 bytes (32-bit arch). Your last example should succeed with let data1 = Data(repeating: 0, count: 15).

2 Likes