gguf_set_arr_data function

void gguf_set_arr_data(
  1. Pointer<gguf_context> ctx,
  2. Pointer<Char> key,
  3. gguf_type type,
  4. Pointer<Void> data,
  5. int n,
)

Implementation

void gguf_set_arr_data(
  ffi.Pointer<gguf_context> ctx,
  ffi.Pointer<ffi.Char> key,
  gguf_type type,
  ffi.Pointer<ffi.Void> data,
  int n,
) => _gguf_set_arr_data(
  ctx,
  key,
  type.value,
  data,
  n,
);