We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 711daaf commit 041e07dCopy full SHA for 041e07d
src/utils.jl
@@ -45,6 +45,10 @@ like `copy!` on arrays of scalars.
45
"""
46
function recursivecopy! end
47
48
+function recursivecopy!(b, a)
49
+ copyto!(b, a)
50
+end
51
+
52
function recursivecopy!(b::AbstractArray{T, N},
53
a::AbstractArray{T2, N}) where {T <: StaticArraysCore.StaticArray,
54
T2 <: StaticArraysCore.StaticArray,
0 commit comments