A.Yazdiha
A.Yazdiha

Reputation: 1378

Is there any equivalent to c++ style std::map in Julia

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

Answers (1)

Horia Coman
Horia Coman

Reputation: 8781

Julia has dictionary types.

The semantics are pretty similar to the one in C++.

Upvotes: 5

Related Questions