You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia>using UUID
julia> a = UUID.v4()
Uuid('fb934355-a175-4b7c-8160-c27bc2d16abc')
julia> a == a
true
julia> s =string(a)
"fb934355-a175-4b7c-8160-c27bc2d16abc"
julia> UUID.Uuid(s)
Uuid('fb934355-a175-4b7c-8160-c27bc2d16abc')
julia> a == ans
false
Seems a little weird to me. As an aside, it would be cool if we could write the proper convert functions, so that things like a = UUID.v4(); a == string(a) would work
Seems a little weird to me. As an aside, it would be cool if we could write the proper
convertfunctions, so that things likea = UUID.v4(); a == string(a)would work