You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For resilient parsing of CBOR streams that may contain unknown objects, I'd love to have a Deserializer method that parses and discards one CBOR object, including any contained objects. For instance, if the next object is a definite array, it'll parse and discard len objects; if the next object is an indefinite map, it'll parse and discard pairs of objects until it parses and discards a Break. This makes it easy to, for instance, discard the value associated with an unknown key in a map, allowing for extensible objects.
The text was updated successfully, but these errors were encountered:
For resilient parsing of CBOR streams that may contain unknown objects, I'd love to have a
Deserializer
method that parses and discards one CBOR object, including any contained objects. For instance, if the next object is a definite array, it'll parse and discard len objects; if the next object is an indefinite map, it'll parse and discard pairs of objects until it parses and discards a Break. This makes it easy to, for instance, discard the value associated with an unknown key in a map, allowing for extensible objects.The text was updated successfully, but these errors were encountered: