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
I feel like LittleDict benifits from many of the same advantages as Dictionaries.jl has in general.
Common operation I do on LittleDict is to strip off the keys, and map over the values and then reattach the keys. Which is much cleaner if done in the Dictionaries.jl way.
LittleDict is basically just a pair of two vectors.
One for keys and one for values.
It searchs the first to find the key position (with isequal).
Then it uses that to index into the vector of values
The text was updated successfully, but these errors were encountered:
I feel like LittleDict benifits from many of the same advantages as Dictionaries.jl has in general.
Common operation I do on LittleDict is to strip off the keys, and map over the values and then reattach the keys. Which is much cleaner if done in the Dictionaries.jl way.
LittleDict is basically just a pair of two vectors.
One for keys and one for values.
It searchs the first to find the key position (with
isequal
).Then it uses that to index into the vector of values
The text was updated successfully, but these errors were encountered: