Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat:
VectorDiff::apply
uses Vector::append
on VectorDiff::Append
.
Using `Vector::extend` will push back each value from `values` individually in a loop. However, this patch changes that to use `Vector::append` which appends all values at once. It's probably more optimised.
- Loading branch information