We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c3e41e commit 2c1d1ebCopy full SHA for 2c1d1eb
pygorithm/math/modules.py
@@ -0,0 +1,15 @@
1
+import pkgutil
2
+
3
4
+def modules():
5
+ """
6
+ Find all functions in pygorithm.data_structures
7
8
+ import pygorithm.math
9
+ package = pygorithm.math
10
+ modules = []
11
+ for importer, modname, ispkg in pkgutil.iter_modules(package.__path__):
12
+ modules.append(modname)
13
+ modules.remove('modules')
14
+ modules.sort()
15
+ return modules
0 commit comments