Class: TrueClass

Inherits:
Object
  • Object
show all
Defined in:
lib/rbor/bool.rb

Instance Method Summary collapse

Instance Method Details

#cbor_serializeString

Serialize true into a CBOR string.

Returns:

  • (String)

    the object serialized to CBOR.

Author:

  • David P. Sugar (r4gus)



18
19
20
# File 'lib/rbor/bool.rb', line 18

def cbor_serialize
  return String.new("\xf5", encoding: "BINARY")
end