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
Under the section 'Type inference and empty collections' It is mentioned that 'Julia has a dedicated type, None – a subtype of Any – that applies to the empty set'. But following is the output I am getting in REPL:
julia> empty_set = []
Any[]
instead of:
julia> empty_set = []
0-element Array{None,1}
The text was updated successfully, but these errors were encountered:
Under the section 'Type inference and empty collections' It is mentioned that 'Julia has a dedicated type,
None
– a subtype ofAny
– that applies to the empty set'. But following is the output I am getting in REPL:instead of:
The text was updated successfully, but these errors were encountered: