Arrays¶
-
type vx_array¶
Base type for all Vortex arrays.
All built-in Vortex array types can be safely cast to this type to pass into functions that expect a generic array type. e.g.
`cpp auto primitive_array = vx_array_primitive_new(...); vx_array_len((*vx_array) primitive_array)); `
-
const vx_array *vx_array_clone(const vx_array *ptr)¶
Clone a borrowed
vx_array
, returning an ownedvx_array
.Must be released with
vx_array_free()
.