Skip to content

Commit

Permalink
Expand on objectid docstring (#45987)
Browse files Browse the repository at this point in the history
  • Loading branch information
LilithHafner authored Jul 12, 2022
1 parent 0aeb0ad commit c72625f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion base/reflection.jl
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,9 @@ end
"""
objectid(x) -> UInt
Get a hash value for `x` based on object identity. `objectid(x)==objectid(y)` if `x === y`.
Get a hash value for `x` based on object identity.
If `x === y` then `objectid(x) == objectid(y)`, and usually when `x !== y`, `objectid(x) != objectid(y)`.
See also [`hash`](@ref), [`IdDict`](@ref).
"""
Expand Down

2 comments on commit c72625f

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily package evaluation, I will reply here when finished:

@nanosoldier runtests(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your package evaluation job has completed - possible new issues were detected. A full report can be found here.

Please sign in to comment.