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
Is your feature request related to a problem? Please describe.
I'm currently working on a text/font app that requires potentially processing multiple languages, as such I opted to utilize runes as my map keys. For instance I have maps like:
When I try to feed such structures through to the json.marshal function, I receive the Unsupported_Type error message. Upon looking at the source code, it seems like presently runes are not a supported key type for marshalling
Describe the solution you'd like
It seems like the main fix is to update the json marshal function to include support for rune types (and in general fixed arrays of simple data types if those aren't included, but that might be a separate issue).
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I'm currently working on a text/font app that requires potentially processing multiple languages, as such I opted to utilize runes as my map keys. For instance I have maps like:
When I try to feed such structures through to the
json.marshal
function, I receive theUnsupported_Type
error message. Upon looking at the source code, it seems like presently runes are not a supported key type for marshallingDescribe the solution you'd like
It seems like the main fix is to update the json marshal function to include support for rune types (and in general fixed arrays of simple data types if those aren't included, but that might be a separate issue).
The text was updated successfully, but these errors were encountered: