I noticed that for the code snippets I’m playing with, Go to definition
often gives me No definition found
message. For example, in this snippet:
using Meshing
A = rand(50,50,50) # 3D Matrix
points,faces = isosurface(A)
definition of isosurface
can’t be found. What is the reason?
BTW, it almost works in Juno, but gives me a list of 6 out of 19 definitions of isosurface
to choose from. I would prefer the magic of multiple dispatch to narrow it down to the single one called in this case.