Module: Sequel::LooserTypecasting

Defined in:
lib/sequel/extensions/looser_typecasting.rb

Instance Method Summary collapse

Instance Method Details

#typecast_value_float(value) ⇒ Object

Typecast the value to a Float using to_f instead of Kernel.Float



12
13
14
# File 'lib/sequel/extensions/looser_typecasting.rb', line 12

def typecast_value_float(value)
  value.to_f
end

#typecast_value_integer(value) ⇒ Object

Typecast the value to an Integer using to_i instead of Kernel.Integer



17
18
19
# File 'lib/sequel/extensions/looser_typecasting.rb', line 17

def typecast_value_integer(value)
  value.to_i
end