Sha256: eee03268da65d9cd3591c1d3048ac31c8976615fee3487affb9522fefabbcbd4

Contents?: true

Size: 1.54 KB

Versions: 74

Compression:

Stored size: 1.54 KB

Contents

class NilClass
  #
  # Same as MessagePack.to_msgpack(self[, packer]).
  #
  # @return [String] serialized data
  #
  def to_msgpack(packer=nil)
  end
end

class TrueClass
  #
  # Same as MessagePack.to_msgpack(self[, packer]).
  #
  # @return [String] serialized data
  #
  def to_msgpack(packer=nil)
  end
end

class FalseClass
  #
  # Same as MessagePack.to_msgpack(self[, packer]).
  #
  # @return [String] serialized data
  #
  def to_msgpack(packer=nil)
  end
end

class Fixnum < Integer
  #
  # Same as MessagePack.to_msgpack(self[, packer]).
  #
  # @return [String] serialized data
  #
  def to_msgpack(packer=nil)
  end
end

class Bignum < Integer
  #
  # Same as MessagePack.to_msgpack(self[, packer]).
  #
  # @return [String] serialized data
  #
  def to_msgpack(packer=nil)
  end
end

class Float < Numeric
  #
  # Same as MessagePack.to_msgpack(self[, packer]).
  #
  # @return [String] serialized data
  #
  def to_msgpack(packer=nil)
  end
end

class String
  #
  # Same as MessagePack.to_msgpack(self[, packer]).
  #
  # @return [String] serialized data
  #
  def to_msgpack(packer=nil)
  end
end

class Array
  #
  # Same as MessagePack.to_msgpack(self[, packer]).
  #
  # @return [String] serialized data
  #
  def to_msgpack(packer=nil)
  end
end

class Hash
  #
  # Same as MessagePack.to_msgpack(self[, packer]).
  #
  # @return [String] serialized data
  #
  def to_msgpack(packer=nil)
  end
end

class Symbol
  #
  # Same as MessagePack.to_msgpack(self[, packer]).
  #
  # @return [String] serialized data
  #
  def to_msgpack(packer=nil)
  end
end

Version data entries

74 entries across 74 versions & 3 rubygems

Version Path
msgpack-1.6.0 doclib/msgpack/core_ext.rb
msgpack-1.5.6 doclib/msgpack/core_ext.rb
msgpack-1.5.5 doclib/msgpack/core_ext.rb
msgpack-1.5.4 doclib/msgpack/core_ext.rb
msgpack-1.5.3 doclib/msgpack/core_ext.rb
msgpack-1.5.2 doclib/msgpack/core_ext.rb
msgpack-1.5.1 doclib/msgpack/core_ext.rb
msgpack-1.5.0 doclib/msgpack/core_ext.rb
msgpack-1.4.5 doclib/msgpack/core_ext.rb
msgpack-1.4.4 doclib/msgpack/core_ext.rb
msgpack-1.4.3 doclib/msgpack/core_ext.rb
msgpack-1.4.2 doclib/msgpack/core_ext.rb
msgpack-1.4.0.pre1 doclib/msgpack/core_ext.rb
msgpack-1.3.3-x64-mingw32 doclib/msgpack/core_ext.rb
msgpack-1.3.3-x86-mingw32 doclib/msgpack/core_ext.rb
msgpack-1.3.3 doclib/msgpack/core_ext.rb
msgpack-1.3.2-x64-mingw32 doclib/msgpack/core_ext.rb
msgpack-1.3.2-x86-mingw32 doclib/msgpack/core_ext.rb
msgpack-1.3.2 doclib/msgpack/core_ext.rb
chatops-rpc-0.0.2 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/msgpack-1.3.1/doclib/msgpack/core_ext.rb