同步操作将从 邢楠/msgpack 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
package codestype Code bytevar (PosFixedNumHigh Code = 0x7fNegFixedNumLow Code = 0xe0Nil Code = 0xc0False Code = 0xc2True Code = 0xc3Float Code = 0xcaDouble Code = 0xcbUint8 Code = 0xccUint16 Code = 0xcdUint32 Code = 0xceUint64 Code = 0xcfInt8 Code = 0xd0Int16 Code = 0xd1Int32 Code = 0xd2Int64 Code = 0xd3FixedStrLow Code = 0xa0FixedStrHigh Code = 0xbfFixedStrMask Code = 0x1fStr8 Code = 0xd9Str16 Code = 0xdaStr32 Code = 0xdbBin8 Code = 0xc4Bin16 Code = 0xc5Bin32 Code = 0xc6FixedArrayLow Code = 0x90FixedArrayHigh Code = 0x9fFixedArrayMask Code = 0xfArray16 Code = 0xdcArray32 Code = 0xddFixedMapLow Code = 0x80FixedMapHigh Code = 0x8fFixedMapMask Code = 0xfMap16 Code = 0xdeMap32 Code = 0xdfFixExt1 Code = 0xd4FixExt2 Code = 0xd5FixExt4 Code = 0xd6FixExt8 Code = 0xd7FixExt16 Code = 0xd8Ext8 Code = 0xc7Ext16 Code = 0xc8Ext32 Code = 0xc9)func IsFixedNum(c Code) bool {return c <= PosFixedNumHigh || c >= NegFixedNumLow}func IsFixedMap(c Code) bool {return c >= FixedMapLow && c <= FixedMapHigh}func IsFixedArray(c Code) bool {return c >= FixedArrayLow && c <= FixedArrayHigh}func IsFixedString(c Code) bool {return c >= FixedStrLow && c <= FixedStrHigh}func IsString(c Code) bool {return IsFixedString(c) || c == Str8 || c == Str16 || c == Str32}func IsFixedExt(c Code) bool {return c >= FixExt1 && c <= FixExt16}func IsExt(c Code) bool {return IsFixedExt(c) || c == Ext8 || c == Ext16 || c == Ext32}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。