We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Byte
True
> import Bytes.Encode > b0 = [] |> List.map Bytes.Encode.unsignedInt8 |> Bytes.Encode.sequence |> Bytes.Encode.encode <0 bytes> : Bytes.Bytes > b1 = [ 125, 211, 143, 67, 78, 89, 125, 24, 100, 73, 61, 190, 172, 133, 160, 82, 150, 234, 82, 197, 97, 146, 67, 85, 53, 203, 134, 236, 168, 180, 179, 239 ] |> List.map Bytes.Encode.unsignedInt8 |> Bytes.Encode.sequence |> Bytes.Encode.encode <32 bytes> : Bytes.Bytes > (b0 == b1) True : Bool
I'm not sure if it was ever intended to be able to compare two Bytes values, but the result of such comparison is very surprising.
Bytes
The text was updated successfully, but these errors were encountered:
==
Successfully merging a pull request may close this issue.
I'm not sure if it was ever intended to be able to compare two
Bytes
values, but the result of such comparison is very surprising.The text was updated successfully, but these errors were encountered: