Add changelog for copying UnknownArrayHandle

This commit is contained in:
Kenneth Moreland 2021-02-01 16:50:09 -07:00
parent 1faed3712e
commit fa4da95eb2

@ -0,0 +1,9 @@
# Precompiled `ArrayCopy` for `UnknownArrayHandle`
Previously, in order to copy an `UnknownArrayHandle`, you had to specify
some subset of types and then specially compile a copy for each potential
type. With the new ability to extract a component from an
`UnknownArrayHandle`, it is now feasible to precompile copying an
`UnknownArrayHandle` to another array. This greatly reduces the overhead of
using `ArrayCopy` to copy `UnknownArrayHandle`s while simultaneously
increasing the likelihood that the copy will be successful.