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
{{ message }}
This repository has been archived by the owner on Feb 2, 2018. It is now read-only.
It should have types and functions useful to manipulate multicodec-packed.
At least these, but probably other things:
// this represents a varint code that we can use in a table.typeCode []byte// maybe string to allow using it in maps// some table type that maps a Code to a multicodec path// so it can be used with the multicodec package.typeTablemap[Code]stringfuncGetCode(buf []byte) Code {} // a way to retrieve the code from a value type.funcAddPrefix(Code, buf []byte) []byte {} // add a multicodec-packed prefixfuncRemovePrefix(buf []byte) []byte {} // remove the multicodec-packed prefix
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
It should have types and functions useful to manipulate multicodec-packed.
At least these, but probably other things:
The text was updated successfully, but these errors were encountered: