Class: LogStash::Filters::MathFunctions::Multiply
- Inherits:
-
Object
- Object
- LogStash::Filters::MathFunctions::Multiply
- Includes:
- NoValidityCheckNeeded
- Defined in:
- lib/logstash/filters/math_functions.rb
Instance Method Summary collapse
Methods included from NoValidityCheckNeeded
Instance Method Details
#call(op1, op2) ⇒ Object
59 60 61 |
# File 'lib/logstash/filters/math_functions.rb', line 59 def call(op1, op2) op1 * op2 end |
#name ⇒ Object
55 56 57 |
# File 'lib/logstash/filters/math_functions.rb', line 55 def name "multiply" end |