class Transit::WriteHandlers::BigDecimalHandler
Public Instance Methods
rep(f)
click to toggle source
# File lib/transit/write_handlers.rb, line 264 def rep(f) f.to_s("f") end
string_rep(f)
click to toggle source
# File lib/transit/write_handlers.rb, line 265 def string_rep(f) rep(f) end
tag(_)
click to toggle source
# File lib/transit/write_handlers.rb, line 263 def tag(_) "f" end