Re: [Rd] Finding dynamic shared libraries loaded with a package

2012-07-23 Thread Winston Chang
On Mon, Jul 23, 2012 at 7:47 PM, Gabor Grothendieck wrote: > On Mon, Jul 23, 2012 at 8:29 PM, Winston Chang > wrote: > > Is there a way to query a package to see what dynamic shared libraries > are > > loaded with it? > > > > This gives a "DLLInfoList" class object whose components are info > as

Re: [Rd] Finding dynamic shared libraries loaded with a package

2012-07-23 Thread Gabor Grothendieck
On Mon, Jul 23, 2012 at 8:29 PM, Winston Chang wrote: > Is there a way to query a package to see what dynamic shared libraries are > loaded with it? > This gives a "DLLInfoList" class object whose components are info associated with the loaded dll's DLLInfoList <- library.dynam() and this gives

[Rd] Finding dynamic shared libraries loaded with a package

2012-07-23 Thread Winston Chang
Is there a way to query a package to see what dynamic shared libraries are loaded with it? The reason I ask is because during development, I want to unload libraries so that they can be reloaded without restarting R. I want to make it automatic so that you can just pass in the name of the package