Class: Radiator::Type::Array

Inherits:
Serializer show all
Defined in:
lib/radiator/type/array.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) ⇒ Array

Returns a new instance of Array.



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

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

Instance Method Details

#to_bytesObject



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

def to_bytes
  pakArr(@value)
end

#to_sObject



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

def to_s
  @value.to_json
end