| Allegro CL version 10.1 New since the initial 10.1 release. |
Arguments: package
Returns a list of (local-nickname . actual-package)
pairs for each local-nickname mapping
within package, which must be a
package-designator.
cl-user(4): (defpackage :foo) #<The foo package> cl-user(5): (defpackage :bar) #<The bar package> cl-user(6): (defpackage :mypack (:use :cl :excl) (:local-nicknames (:f1 :foo) (:b1 :bar))) #<The mypack package> cl-user(7): (package-local-nicknames :mypack) (("f1" . #<The foo package>) ("b1" . #<The bar package>)) cl-user(8):
See Package-local Nicknames in packages.htm for more information in package-local nicknames.
Copyright (c) 1998-2022, Franz Inc. Lafayette, CA., USA. All rights reserved.
This page is new in the 10.1 release.
Created 2019.8.20.
| Allegro CL version 10.1 New since the initial 10.1 release. |