Class: FalseClass

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

Instance Method Summary collapse

Instance Method Details

#cbor_serializeString

Serialize false into a CBOR string.

Returns:

  • (String)

    the object serialized to CBOR.

Author:

  • David P. Sugar (r4gus)



7
8
9
# File 'lib/rbor/bool.rb', line 7

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