I'm working with Jupyter and SciJava, and have a number of questions regarding the actual Java implementation. I'd like to find some more detailed documentation as to the Java features supported (or not) and possibly even connect with the SciJava team.
For example, unless I've done something quite incorrect, you simply cannot initialize an array at declaration: i.e.
int[] myarr = new int[] {1,2,3,4};
does not work.
The Java also seems quite finicky about arrays in general
int[]x // is ok but...
int x[] // is not.
Yet both are valid Java. SO... that's why I'm seeking more documentation on the Java implementation in SciJava.
Thanks in advance,
-Richard