I am currently working with CoreAudio in Swift. And there is a structure called AudioBufferList. It has a property mBuffers, which has type (AudioBuffer) and described as "A variable length array of AudioBuffer structures".
Since Array in Swift is defined as [Type], and I can not find anything about declaring an Array as (Type) I do wonder how is that possible that (Type) is also an Array and how to work with it?
Thank you for your help.