Class: DecisionAgent::Dmn::Feel::Functions::DurationFunction

Inherits:
Base
  • Object
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



396
397
398
399
# File 'lib/decision_agent/dmn/feel/functions.rb', line 396

def self.call(args, _context = {})
  validate_arg_count(args, 1)
  Types::Duration.parse(args[0])
end