Reputation: 1378
I am wondering if there are any equivalent std::map
in julia... For the purpose of mapping only , I know I can maybe use a Pair
type for example, but are there other types with better functionalities as in std::map
?
Upvotes: 1
Views: 184
Reputation: 8781
Julia has dictionary types.
The semantics are pretty similar to the one in C++.
Upvotes: 5