Product Documentation
Cadence SKILL Language Reference
Product Version IC23.1, November 2023

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

l_symbolList

Specifies the symbols that you want to remove from the export list of your namespace.

Value Returned

t

The referenced symbols are successfully removed.

Examples

(removeFromExportList '(jane::aaa))
=> t
(useNamespace "jane")
=> t
(getSymbolNamespace 'aaa)
=> nil

Related Topics

Namespace Functions

useNamespace

unuseNamespace


Return to top
 ⠀
X