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.
dataids(::AbstractArray)
UInt
1 parent 191be7c commit 573db77Copy full SHA for 573db77
base/abstractarray.jl
@@ -1601,7 +1601,7 @@ parts can specialize this method to return the concatenation of the `dataids` of
1601
their component parts. A typical definition for an array that wraps a parent is
1602
`Base.dataids(C::CustomArray) = dataids(C.parent)`.
1603
"""
1604
-dataids(A::AbstractArray) = (UInt(objectid(A)),)
+dataids(A::AbstractArray) = (objectid(A),)
1605
dataids(A::Memory) = (UInt(A.ptr),)
1606
dataids(A::Array) = dataids(A.ref.mem)
1607
dataids(::AbstractRange) = ()
0 commit comments