Class: DecisionAgent::Dmn::Feel::Functions::Any
- Inherits:
-
Base
- Object
- Base
- DecisionAgent::Dmn::Feel::Functions::Any
show all
- Defined in:
- lib/decision_agent/dmn/feel/functions.rb
Class Method Summary
collapse
Methods inherited from Base
register, validate_arg_count
Class Method Details
.call(args, _context = {}) ⇒ Object
364
365
366
367
368
|
# File 'lib/decision_agent/dmn/feel/functions.rb', line 364
def self.call(args, _context = {})
validate_arg_count(args, 1)
list = Array(args[0])
list.any? { |item| [true, "true"].include?(item) }
end
|