Method: XlsFunction::Evaluators::FunctionEvaluator#eval_or_map_eval
- Defined in:
- lib/xls_function/evaluators/function_evaluator.rb
#eval_or_map_eval ⇒ Object
61 62 63 64 65 66 67 68 |
# File 'lib/xls_function/evaluators/function_evaluator.rb', line 61 def eval_or_map_eval args = defined_args if args.any? { |arg| arg.is_a?(Array) } map_eval(args) else eval end end |