module CBOR_DIAG::BstringPart6

Public Instance Methods

partval() click to toggle source
# File lib/cbor-diag-parser.rb, line 1758
def partval; (((s.text_value.to_i(16) & 0x3FF) << 10) +
               (t.text_value.to_i(16) & 0x3FF) + 0x10000).chr(Encoding::UTF_8) end