fvec_copy method

void fvec_copy(
  1. Pointer<fvec_t> s,
  2. Pointer<fvec_t> t
)

make a copy of a vector

\param s source vector \param t vector to copy to

Implementation

void fvec_copy(
  ffi.Pointer<fvec_t> s,
  ffi.Pointer<fvec_t> t,
) {
  return _fvec_copy(
    s,
    t,
  );
}