Sha256: 30ba2e75ab98036e21098311cfcda8efed39df988b849499155bb870ac96f550

Contents?: true

Size: 1.21 KB

Versions: 4

Compression:

Stored size: 1.21 KB

Contents

# frozen_string_literal: true
require 'wordlist/operators/binary_operator'

module Wordlist
  module Operators
    #
    # Lazily enumerates over the combination of the words from two wordlists.
    #
    # @since 1.0.0
    #
    class Product < BinaryOperator

      #
      # Enumerates over every combination of the words from the two wordlist.
      #
      # @yield [string]
      #   The given block will be passed each combination of words from the
      #   two wordlist.
      #
      # @yieldparam [String] string
      #   A combination of two words from the two wordlists.
      #
      # @return [Enumerator]
      #   If no block is given, an Enumerator object will be returned.
      #
      # @example
      #   wordlist1 = Wordlist::Words["foo", "bar"]
      #   wordlist2 = Wordlist::Words["ABC", "XYZ"]
      #   (wordlist1 * wordlist2).each do |word|
      #     puts word
      #   end
      #   # fooABC
      #   # fooXYZ
      #   # barABC
      #   # barXYZ
      #
      # @api public
      #
      def each
        return enum_for(__method__) unless block_given?

        @left.each do |word1|
          @right.each do |word2|
            yield word1 + word2
          end
        end
      end

    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
wordlist-1.1.0 lib/wordlist/operators/product.rb
wordlist-1.0.3 lib/wordlist/operators/product.rb
wordlist-1.0.2 lib/wordlist/operators/product.rb
wordlist-1.0.1 lib/wordlist/operators/product.rb