Class: XlsFunction::Evaluators::Functions::Switch

Inherits:
XlsFunction::Evaluators::FunctionEvaluator show all
Defined in:
lib/xls_function/evaluators/functions/switch.rb

Instance Method Summary collapse

Methods inherited from XlsFunction::Evaluators::FunctionEvaluator

#arg_list, #before_eval, #convert_to, create, #detect_error, #error?, #error_message, #eval_or_map_eval, #evaluate, #evaluate_or_self, #initialize, #map_eval, to_h, #to_proc, to_proc, translated_description, #variant_context

Methods included from ClassDictionary

included

Methods included from ErrorDetector

#class_info, #class_name, included, #rescue_with

Methods included from ArgumentsDefinable

included

Methods included from Evaluable

#evaluate, included

Constructor Details

This class inherits a constructor from XlsFunction::Evaluators::FunctionEvaluator

Instance Method Details

#evalObject



11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/xls_function/evaluators/functions/switch.rb', line 11

def eval
  condition = arg_list.first.evaluate(context)

  arg_list[1..-1].each_slice(2) do |expr, value|
    ex_value = expr&.evaluate(context)
    in_value = value&.evaluate(context)

    return in_value if ex_value == condition

    return ex_value if in_value.nil?
  end

  XlsFunction::ErrorValue.na(class_info(error_message(:missing_value_for_function)))
end

#eval_arglistObject



7
8
9
# File 'lib/xls_function/evaluators/functions/switch.rb', line 7

def eval_arglist
  # Skip common argument evaluation and assignment for short-circuit
end