| java.lang.Object gnu.mapping.Namespace gnu.kawa.lispexpr.LispPackage
LispPackage | public class LispPackage extends Namespace (Code) | | Implementa A Common Lisp "package" value.
Far from complete.
|
Field Summary | |
Namespace | exported The set of exported symbols. | NamespaceUse | imported Namespaces that this Namespace imports or uses.
These are the imported fields of the
NamespaceUse , chained using nextImported fields.
The CommonLisp "uses" list. | NamespaceUse | importing Namespaces that import/use this namespace.
The CommonLisp "used-by" list. | LList | shadowingSymbols |
exported | Namespace exported(Code) | | The set of exported symbols.
This is on of the packages in importing.
|
imported | NamespaceUse imported(Code) | | Namespaces that this Namespace imports or uses.
These are the imported fields of the
NamespaceUse , chained using nextImported fields.
The CommonLisp "uses" list.
|
importing | NamespaceUse importing(Code) | | Namespaces that import/use this namespace.
The CommonLisp "used-by" list.
|
shadow | public void shadow(String name)(Code) | | The core of the Common Lisp shadow function.
|
shadowingImport | public void shadowingImport(Symbol symbol)(Code) | | |
|
|