-
Notifications
You must be signed in to change notification settings - Fork 5
use reverse
to replace deprecated flipdim
#37
New issue
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
Conversation
joExtend already work for multidimensional arrays, that's what |
@@ -187,3 +187,9 @@ function joExtend(n::Integer,pad_type::Symbol; | |||
return nothing | |||
end | |||
|
|||
function joExtend(n::NTuple{N, Integer},pad_type::Symbol; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's not the convention in JOLI, the convention is joXXX(n1, n2, n3 ....)
no a tuple.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. Vararg{Integer, N}
would only be OK if that is the last argument. However, there is a pad_type
after that. Any suggestion?
reverse
to replace deprecated flipdim
Update project.toml |
Is there a hold up here I can help with? I ran into this error for the second time in the last few months. |
Project.toml update for new release |
And if it creates a bug then there should be a test associated with it |
flipdim
already deprecated so changed it toreverse