divide(&func)
Instance Public methods
Divides the set into a set of subsets according to the commonality defined
by the given block.
If the arity of the block is 2, elements o1 and o2 are in common if
block.call(o1, o2) is true. Otherwise, elements o1 and o2 are in common if
block.call(o1) == block.call(o2).
e.g.:
require 'set'
numbers = Set[1, 3, 4, 6, 9, 10, 11]
set = numbers.divide { |i,j| (i - j).abs == 1 }
p set # => #<Set: {#<Set: {1}>,
#