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