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
Numo::Bit#to_string
Hello.
I found some strange behavior of Numo::Bit. Is this some kind of bug?
Create a Numo::Bit object.
b = Numo::Bit.ones(1,2)
Call to_string. The results are inconsistent. If you run irb again, you will get a different result.
to_string
b.to_string # "W" or # "#" or # "\x87" ... etc
The text was updated successfully, but these errors were encountered:
I understood it somehow. Maybe this is not a bug. We need at least 8 bits to call to_string.
Sorry, something went wrong.
No branches or pull requests
Hello.
I found some strange behavior of Numo::Bit.
Is this some kind of bug?
Step to reproduce
Create a Numo::Bit object.
Call
to_string
. The results are inconsistent.If you run irb again, you will get a different result.
The text was updated successfully, but these errors were encountered: