toArray
Turn a NULL terminated C Array into a Kotlin Array
set operations on the returned array does not modify the original C Array.
inline fun <T : CPointed> CArray<T>.toArray(size: Int): Array<CPointer<T>>
Content copied to clipboard
Turn a C Array into a Kotlin Array with a known size
set operations on the returned Array does not modify the original C Array.