methods(f) essentially gives you the full type of a generic function. As you'll see from trying it on, say, the + function, this isn't as helpful as you might imagine.
On Sat, Jul 5, 2014 at 10:52 PM, Sid <[email protected]> wrote: > Is there a way in julia to find the complete type of a function or union? > > Currently if I use typeof on a function, It just returns Function and > typeof on a union just returns UnionType. >
