|
From: Luigi B. <lui...@gm...> - 2011-06-07 07:24:44
|
On Jun 7, 2011, at 9:22 AM, Bojan Nikolic wrote: > > Luigi Ballabio <lui...@gm...> writes: > >>> Is there a comprehensive list of what QuantLib functions are >>> accessible via swig? >> >> No, there is not. I guess it could be done by running some clever >> regular expression over the SWIG interface files, but it's not been >> done as far as I know. > > In Python you should be able to just to execute the dir() command on > the > SWIG-generated module. True. You would get a list of the classes and of the top-level functions (not of the methods) but it's a start. You could go down recursively from the list of classes to get the full list. Luigi |