# File lib/benelux/stats.rb, line 81
81:       def merge(*tags)
82:         #tags = Selectable.normalize tags
83:         mc = Calculator.new
84:         mc.init_tags!
85:         all = tags.empty? ? self : self.filter(tags)
86:         all.each { |calc| 
87:           mc.merge! calc
88:           mc.add_tags_quick calc.tags
89:         }    
90:         mc
91:       end