class Neo4j::Shared::TypeConverters::FloatConverter
Public Class Methods
convert_type()
click to toggle source
# File lib/neo4j/shared/type_converters.rb 47 def convert_type 48 Float 49 end
db_type()
click to toggle source
# File lib/neo4j/shared/type_converters.rb 51 def db_type 52 Float 53 end
to_db(value)
click to toggle source
# File lib/neo4j/shared/type_converters.rb 55 def to_db(value) 56 value.to_f 57 end
Also aliased as: to_ruby