addToExportList
addToExportList(
l_symbols
)
=> t
Description
Adds the specified symbols to the namespace export list. This function does not throw any errors if a symbol is already exported. You can export any symbol from your namespace.
Arguments
|
Specify the symbols that you want to add to the namespace export list. |
Value Returned
|
The specified symbols are successfully added to the namespace export list. |
Examples
(addToExportList '(newNameSpace:::aaa newNameSpace:::bbb))
=> t
(useNamespace "newNameSpace")
=> t
(getSymbolNamespace 'aaa)
=> ns@newNameSpace
Related Topics
Return to top