Class: Radiator::Type::Hash

Inherits:
Serializer show all
Defined in:
lib/radiator/type/hash.rb

Instance Method Summary collapse

Methods included from Utils

#debug, #error, #extract_signatures, #hexlify, #pakArr, #pakC, #pakHash, #pakI, #pakL!, #pakS, #pakStr, #pakc, #paks, #send_log, #unhexlify, #varint, #warning

Constructor Details

#initialize(value) ⇒ Hash

Returns a new instance of Hash.



4
5
6
# File 'lib/radiator/type/hash.rb', line 4

def initialize(value)
  super(:hash, true)
end

Instance Method Details

#to_bytesObject



8
9
10
# File 'lib/radiator/type/hash.rb', line 8

def to_bytes
  pakHash(@value)
end

#to_sObject



12
13
14
# File 'lib/radiator/type/hash.rb', line 12

def to_s
  @value.to_json
end