Method: XlsFunction::Evaluators::Functions::Or#eval
- Defined in:
- lib/xls_function/evaluators/functions/or.rb
#eval ⇒ Object
11 12 13 14 15 16 17 |
# File 'lib/xls_function/evaluators/functions/or.rb', line 11 def eval arg_list.each do |arg| return true if arg.evaluate(context) end false end |