Method: CLabs::CaseGen::Sets#generate_combinations
- Defined in:
- lib/agents/sets.rb
#generate_combinations ⇒ Object
54 55 56 57 58 59 |
# File 'lib/agents/sets.rb', line 54 def generate_combinations arrays = [] @set_titles = [] @sets.each do |set| arrays << set.data; @set_titles << set.name end @combinations = all(*arrays) end |