How can I alloc an array of Longs using allocArray...
# kotlin-native
z
How can I alloc an array of Longs using allocArrayOf?
d
Depending on what you want to use the array for it might be better to pin a
LongArray
instead.
To answer your question though,
allocArrayOf<LongVar>
should work.