demarches-normaliennes/app/models/logic/and.rb

12 lines
246 B
Ruby
Raw Normal View History

2022-06-09 14:00:18 +02:00
class Logic::And < Logic::NAryOperator
attr_reader :operands
def operator_name = 'Et'
def compute(champs = [])
@operands.map { |operand| operand.compute(champs) }.all?
end
def to_s = "(#{@operands.map(&:to_s).join(' && ')})"
end