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 Jul 31, 2023. It is now read-only.
Yes. For example when KeyInt64 and KeyBool are added they will need to have their own: ValueAsString(b []byte) string.
Which is not just a casting. For example:
For KeyInt64 []byte { 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1} could return "3"
For KeyBool []byte { 0 } could return "False"
For KeyBool []byte { 0 } could return "True"
- Rename TagSet to Tag.
- Remove ErrKeyNotFound but rather return a bool from
(*TagSet).StringValue. There are no other errors that can
be returned other than existence/nonexistence.
Fixes#47.
Fixes#21.
is not accessing any of the Key fields and is doing a redundant job of casting a []byte into string.
/cc @acetechnologist
The text was updated successfully, but these errors were encountered: