read
// CoreAudio.swift
subscript(index: Index) -> Element {
_read {
yield ((_audioBuffersPointer + index).pointee)
}
}
modify
// Array.swift
subscript(index: Int) -> Element {
_modify {
let address = _buffer.subscriptBaseAddress + index
yield &address.pointee
}
}