addToNamespace
addToNamespace(t_namespaceName l_symbolList) =>t
Description
Adds and imports the given list of symbol names to the export list of the namespace t_namespaceName.
Arguments
|
Specify the name of the namespace to which you want to add the given list of symbols. |
|
|
Specifies the symbols that you want to add to the export list of the specified namespace. |
Value Returned
Examples
(addToNamespace "A" '("a" "b" "c"))
=> t
(getSymbolNamespace 'a)
=> ns@A
Related Topics
Return to top