removeFromExportList
removeFromExportList(l_symbolList) =>t
Description
Removes symbols referenced in l_symbolList from the export list of its namespace. This function will not throw an error, if some of the symbols are not exported. If a symbol from l_symbolList was imported by useNamespace it will not removed by unuseNamespace.
Arguments
|
Specifies the symbols that you want to remove from the export list of your namespace. |
Value Returned
Examples
(removeFromExportList '(jane::aaa))
=> t
(useNamespace "jane")
=> t
(getSymbolNamespace 'aaa)
=> nil
Related Topics
Return to top