go
go copied to clipboard
idiomatic codec and rpc lib for msgpack, cbor, json, etc. msgpack.org[Go]
As part of coverity scan , following is observed in Details: The expression's value does not depend on the operands; often, this represents an inadvertent logic error. In github.com/ugorji/go/codec.mpdesc(byte, string):...
### **Did you read the documentation?** Yes ### **What are you trying to do?** I'm reading a file that has data encoded in CBOR format and passing the bytes to...
Hi, I attached a [sample project](https://github.com/ugorji/go/files/8887017/test.zip) in order to show the issue. The problem appears when a package tries to use code generated in other package. To reproduce the issue...
Hi, when you define `type A = B`, `A` becomes an alias of `B`. Instead, using `type A B`, `B` is an underlying object of `A`. For the former, the...
go-codec currently supports - Binary: Msgpack - Binary: CBOR - Text: JSON For completeness, it should support XML also. Though XML has fallen out-of-favor, it is still widely used. The...
Hello, I am considering using this library for a project that involves a Big Endian architecture. Could you please clarify if the library is architecture agnostic? Specifically, I would like...