We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0e7684 commit feddd37Copy full SHA for feddd37
base/nullable.jl
@@ -62,6 +62,7 @@ end
62
get(x::Nullable) = x.isnull ? throw(NullException()) : x.value
63
64
isnull(x::Nullable) = x.isnull
65
+isnull(x) = false
66
67
function isequal(x::Nullable, y::Nullable)
68
if x.isnull && y.isnull
0 commit comments