Skip to content
This repository has been archived by the owner on May 4, 2019. It is now read-only.

type hacking #161

Open
felipenoris opened this issue Oct 11, 2016 · 2 comments
Open

type hacking #161

felipenoris opened this issue Oct 11, 2016 · 2 comments

Comments

@felipenoris
Copy link

Some logic should be considered to be moved to base.

$ julia

julia> Nullable(1) == Nullable(1)
ERROR: NullException()
 in ==(::Nullable{Int64}, ::Nullable{Int64}) at ./nullable.jl:76

julia> using NullableArrays

julia> Nullable(1) == Nullable(1)
ERROR: NullException()
 in ==(::Nullable{Int64}, ::Nullable{Int64}) at ./nullable.jl:76

julia> quit()

$ julia

julia> using NullableArrays

julia> Nullable(1) == Nullable(1)
Nullable{Bool}(true)
@felipenoris
Copy link
Author

Maybe related to JuliaLang/julia#265

@nalimilan
Copy link
Member

Yes, the plan is to try moving these into Base. See #119 and JuliaLang/julia#16988 (I'll open a new clean PR).

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants