combinatorics.rb icon indicating copy to clipboard operation
combinatorics.rb copied to clipboard

Bringing (more) Combinatorics to Ruby.

Results 3 combinatorics.rb issues
Sort by recently updated
recently updated
newest added

It would be useful to add Monad primitives for Enumerating over Sets/Lists. Unlike Ruby's built-in `Array#combination` and `Array#permutation` methods, these Monads would accept any `Enumerable` value and only execute when...

feature

Allow all `cardinality` methods to accept an `Enumerable` value for `n`. In which case `n` will become `n.count`, which enumerates over the value and returns the total number of values...

enhancement

``` ([['a', 'b'].enum_for] * 2).comprehension ``` This will loop infinitely on `["b", "a"]`.

list comprehension
bug