Sha256: 49f49500b7a944d7925c38f1f9da00ad2a4085312907e2abdac8dfd88a9ae4b0
Contents?: true
Size: 1.46 KB
Versions: 59
Compression:
Stored size: 1.46 KB
Contents
class NilClass # # Same as MessagePack.to_msgpack(self[, io]). # # @return [String] serialized data # def to_msgpack(io=nil) end end class TrueClass # # Same as MessagePack.to_msgpack(self[, io]). # # @return [String] serialized data # def to_msgpack(io=nil) end end class FalseClass # # Same as MessagePack.to_msgpack(self[, io]). # # @return [String] serialized data # def to_msgpack(io=nil) end end class Fixnum < Integer # # Same as MessagePack.to_msgpack(self[, io]). # # @return [String] serialized data # def to_msgpack(io=nil) end end class Bignum < Integer # # Same as MessagePack.to_msgpack(self[, io]). # # @return [String] serialized data # def to_msgpack(io=nil) end end class Float < Numeric # # Same as MessagePack.to_msgpack(self[, io]). # # @return [String] serialized data # def to_msgpack(io=nil) end end class String # # Same as MessagePack.to_msgpack(self[, io]). # # @return [String] serialized data # def to_msgpack(io=nil) end end class Array # # Same as MessagePack.to_msgpack(self[, io]). # # @return [String] serialized data # def to_msgpack(io=nil) end end class Hash # # Same as MessagePack.to_msgpack(self[, io]). # # @return [String] serialized data # def to_msgpack(io=nil) end end class Symbol # # Same as MessagePack.to_msgpack(self[, io]). # # @return [String] serialized data # def to_msgpack(io=nil) end end
Version data entries
59 entries across 59 versions & 2 rubygems