class RightAws::ActiveSdb::IntegerSerialization
Public Class Methods
deserialize(string)
click to toggle source
# File lib/sdb/active_sdb.rb, line 1100 def deserialize(string) string.to_i end
serialize(int)
click to toggle source
# File lib/sdb/active_sdb.rb, line 1096 def serialize(int) int.to_s end