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
==
reval
julia> reval("1") == reval("1") false
I am wondering whether this is intended. Of course there is rcopy, but I thought comparison would work on the RObjects as well.
rcopy
The text was updated successfully, but these errors were encountered:
I don't think there is a == method defined, so it falls back to ===:
===
julia> @code_lowered reval("1") == reval("1") CodeInfo( 1 ─ %1 = x === y └── return %1 )
and these are indeed two different Julia objects even if they point to the same R object.
Sorry, something went wrong.
That makes sense, thank you for the inspection.
Successfully merging a pull request may close this issue.
I am wondering whether this is intended. Of course there is
rcopy
, but I thought comparison would work on the RObjects as well.The text was updated successfully, but these errors were encountered: