global

def float?(value)

def float?(value)
  Float(value)
  true
rescue ArgumentError => _ex
  false
end