class ElasticAPM::Config::RoundFloatHashValue

@api private

def call(hash)

def call(hash)
  return {} unless hash
  hash.transform_values { |value| @float_converter.call(value) }
end

def initialize

def initialize
  @float_converter = RoundFloat.new
end