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
I think it would be nice to be able to unpack root objects as if they were tuples of (interval, status) e.g. have the following to work
(interval, status)
julia> r = Root((1..2), :unique) Root([1, 2], :unique) julia> x, status = r
One interesting thing is that it would allow to iterate over the vector of Roots return by roots as follow
Root
roots
for (x, status) in roots(f, A) # do stuff end
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I think it would be nice to be able to unpack root objects as if they were tuples of
(interval, status)
e.g. have the following to workOne interesting thing is that it would allow to iterate over the vector of
Root
s return byroots
as followThe text was updated successfully, but these errors were encountered: