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
Same request as google/go-cmp#185, where the conclusion was to print all unsigned integers in decimal form, except uint8 and uintptr which would be printed in hex (see this change).
I think diff should have the same support as well.
The text was updated successfully, but these errors were encountered:
Unrelated: is there a way to print rune character instead of the Unicode number it maps to?
Type rune is an alias for int; there's no way for this package to distinguish them. Best idea I know of is to print both the decimal value and the character (if the character is printable) for all int values.
Same request as google/go-cmp#185, where the conclusion was to print all unsigned integers in decimal form, except uint8 and uintptr which would be printed in hex (see this change).
I think diff should have the same support as well.
The text was updated successfully, but these errors were encountered: