destroyNative static method

void destroyNative(
  1. Pointer<pnet_matrix_t> matrix
)

call native free on native matrix

Implementation

static void destroyNative(ffi.Pointer<pnet_matrix_t> matrix){
    pnetDylib.pnet_matrix_delete(matrix);
}