class LogStash::Filters::MathFunctions::FloatDivide

Public Instance Methods

call(op1, op2) click to toggle source
# File lib/logstash/filters/math_functions.rb, line 124
def call(op1, op2)
  op1.fdiv(op2)
end
name() click to toggle source
# File lib/logstash/filters/math_functions.rb, line 120
def name
  "float_divide"
end