-
Notifications
You must be signed in to change notification settings - Fork 36
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
Array as argument #132
Comments
Have you tried what is mentioned here? Java arrays are created using |
Thanks, that went through. I think I got confused about the docs. First, I tried out Then I tried I think if there was a direct example of how to pass a Thanks for the help. |
Thanks @dcz-self . Would you be in any interest to send a PR about the example you would like to be in the documentation? |
Sure, I just need another piece of info: what is this call for:
If it doesn't create a double[], then what does it create? What is it useful for? |
|
I tried to use the library to call a simple function, but I'm stuck on arrays.
As soon as one is involved, the signatures seem to not match:
gives:
When trying this on a custom class, the method is found and called as soon as I remove the array argument entirely.
What's the corrent way to pass an array (of primitives) to a method call?
The text was updated successfully, but these errors were encountered: