carp-lang / Carp

A statically typed lisp, without a GC, for real-time applications.
Apache License 2.0
5.47k stars 173 forks source link

feat: add bag data structure #1429

Closed hellerve closed 1 year ago

hellerve commented 1 year ago

This PR adds a Bag data structure, which acts as a set (only storing each thing once) that keeps track of the number of times an item was put in the structure. It’s thus a deduplicated, unordered collection.

Test cases are included.

Cheers

scolsen commented 1 year ago

Nice!