We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NamedTuples
On version 1.1:
julia> tup = (x=1, y=2) (x = 1, y = 2) julia> tup[Not(:x)] ERROR: MethodError: no method matching getindex(::NamedTuple{(:x, :y), Tuple{Int64, Int64}}, ::InvertedIndex{Symbol}) Closest candidates are: getindex(::NamedTuple, ::Int64) at /usr/share/julia/base/namedtuple.jl:126 getindex(::NamedTuple, ::Symbol) at /usr/share/julia/base/namedtuple.jl:127 getindex(::NamedTuple, ::Tuple{Vararg{Symbol}}) at /usr/share/julia/base/namedtuple.jl:128 ... Stacktrace: [1] top-level scope @ REPL[26]:1
The text was updated successfully, but these errors were encountered:
Looks like someone forgot to make a new release after the last merge? @nalimilan could you make one?
Sorry, something went wrong.
No branches or pull requests
On version 1.1:
The text was updated successfully, but these errors were encountered: