objeck / objeck-lang

Objeck is a modern object-oriented programming language with functional features tailored for machine learning. It emphasizes expression, simplicity, portability, and scalability. The programming environment consists of a compiler, virtual machine, REPL shell, and command line debugger with IDE plugins.
https://objeck.org
Other
154 stars 11 forks source link

Add `Collection.MultiSet` #468

Closed ghost closed 7 months ago

ghost commented 7 months ago

Same as Collection.Set but allow duplicate elements.

objeck commented 7 months ago

I do not understand the request as a Set is a type of associative container that contains only unique elements because those elements are used as keys.

ghost commented 7 months ago

I do not understand the request as a Set is a type of associative container that contains only unique elements because those elements are used as keys.

https://www.geeksforgeeks.org/multiset-in-cpp-stl/