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
|
|
|
|
|
2022-09-26 21:21:55 +02:00
|
|
|
def to_s(type_de_champs) = "(#{@operands.map { |o| o.to_s(type_de_champs) }.join(' && ')})"
|
2022-06-09 14:00:18 +02:00
|
|
|
end
|