On Saturday, May 2, 2015 at 7:53:28 AM UTC+10, Krishna Subramanian wrote: > > Hello, > > I am learning my ropes with Julia and come from a C++/Perl background. In > the C++/STL, we have map which implements upper_bound/lower_bound > operations [see Cplusplus.com]. > > Do we have something similar in Julia? >
The standard Julia `Dict` and `Set` types are similar to the C++ `unordered_map` and `unordered_set` types and like the C++ ones don't have upper/lower_bound. > > Thanks. >
