Sha256: 22c2b871081b0cda5309f3765f1d203fccd9c2e8bf31c3675f66645effb473c6

Contents?: true

Size: 362 Bytes

Versions: 14

Compression:

Stored size: 362 Bytes

Contents

module CBOR

  #
  # CBOR::Tagged is used to carry around tagged values that don't map
  # into Ruby classes (false, true, nil are the ones that do).
  class Tagged

    # @param tag [Integer] The integer number of the tag
    # @param value [Object] The value that is being tagged
    def initialize(tag, value)
    end

    attr_reader :tag, :value

  end
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
hx_cbor-2024.7.7 doclib/cbor/tagged.rb
cbor-0.5.9.8 doclib/cbor/tagged.rb
cbor-0.5.9.7 doclib/cbor/tagged.rb
hx_cbor-2021.8.20 doclib/cbor/tagged.rb
cbor-0.5.9.6 doclib/cbor/tagged.rb
cbor-0.5.9.5 doclib/cbor/tagged.rb
cbor-0.5.9.4 doclib/cbor/tagged.rb
cbor-0.5.9.3 doclib/cbor/tagged.rb
cbor-0.5.9.2 doclib/cbor/tagged.rb
cbor-0.5.9.1 doclib/cbor/tagged.rb
cbor-0.5.9.0 doclib/cbor/tagged.rb
cbor-0.5.8.0 doclib/cbor/tagged.rb
cbor-0.5.6.4 doclib/cbor/tagged.rb
cbor-0.5.6.2 doclib/cbor/tagged.rb