Method: Cantor::AbsoluteSet#each
- Defined in:
- lib/cantor/absolute_set.rb
#each ⇒ void
This method returns an undefined value.
Yields each element in the set to the implicit block argument
54 55 56 57 58 59 60 |
# File 'lib/cantor/absolute_set.rb', line 54 def each @universe.each do |value, n| unless @mask[n].zero? yield(value) end end end |