mlx_vector_string_append_data function

  1. @Native<Int Function(mlx_vector_string, Pointer<Pointer<Char>>, Size)>(mlx_vector_string, ffi.Pointer<ffi.Pointer<ffi.Char>>, ffi.Size)>()
int mlx_vector_string_append_data(
  1. mlx_vector_string vec,
  2. Pointer<Pointer<Char>> data,
  3. int size
)

Implementation

@ffi.Native<
  ffi.Int Function(
    mlx_vector_string,
    ffi.Pointer<ffi.Pointer<ffi.Char>>,
    ffi.Size,
  )
>()
external int mlx_vector_string_append_data(
  mlx_vector_string vec,
  ffi.Pointer<ffi.Pointer<ffi.Char>> data,
  int size,
);