Popularity
1.6
Growing
Activity
0.8
Growing
4
1
0
Programming language: Crystal
License: MIT License
Tags:
Algorithms And Data Structures
Latest version: v0.3.0
multiset.cr alternatives and similar shards
Based on the "Algorithms and Data structures" category.
Alternatively, view multiset.cr alternatives based on common mentions on social networks and blogs.
Get performance insights in less than 4 minutes
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
Do you think we are missing an alternative of multiset.cr or a related project?
README
multiset
A multiset (bag) implementation in Crystal.
Installation
Add this to your application's shard.yml
:
dependencies:
multiset:
github: tcrouch/multiset.cr
Usage
require "multiset"
ms1 = Multiset{1, 1}
ms1 << 2 # => Multiset{1, 1, 2}
ms1.merge [3, 4] # => Multiset{1, 1, 2, 3, 4}
ms2 = Multiset.new [2, 3, 4]
ms2.subset?(ms1) # => true
ms1 & ms2 # => Multiset{2, 3, 4}
Development
crystal spec
Contributing
- Fork it ( https://github.com/tcrouch/multiset.cr/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- [tcrouch] Tom Crouch - creator, maintainer