fuel-plugin-sensu/deployment_scripts/puppet/files/embedded/lib/ruby/gems/2.3.0/gems/dentaku-2.0.9/lib/dentaku/ast/functions/ruby_math.rb

9 lines
218 B
Ruby

# import all functions from Ruby's Math module
require_relative "../function"
Math.methods(false).each do |method|
Dentaku::AST::Function.register(method, :numeric, ->(*args) {
Math.send(method, *args)
})
end