The @edit macro is also useful - it opens an editor to the method being used in a particular function call. For example,
@edit rand() @edit rand(10) @edit rand(Int) will take you to different methods of the rand() function. If you just want to know where the method is, you can use @which instead of @edit. Cheers, Scott On Friday, 15 May 2015 22:17:51 UTC+1, Lytu wrote: > > Is there a command in julia that enables us to see/show the implementation > of a module or a function in julia? > If yes, which command? > Can we modify the code of an existing module/function? >
