demarches-normaliennes/app/models/logic/not_in_region_operator.rb
2024-02-13 11:57:31 +01:00

14 lines
265 B
Ruby

class Logic::NotInRegionOperator < Logic::InRegionOperator
def operation
:n_est_pas_dans_la_region
end
def compute(champs)
l = @left.compute(champs)
r = @right.compute(champs)
return false if l.nil?
l.fetch(:code_region) != r
end
end