I often use str() whenever im exploring the outuut of some method in a package im getting familiar with, or i forget what a certain function was supposed to output, etc.
Is there some equivalent in Julia that can be applied to a wide range of objects/types?
I’ve used str quite a bit in R. It’s basically a command to view the internal structure of an object (i.e. its type, value, size, and so on…). In Julia, I’d say the equivalent commands would be a combination of dump and typeof.