HI,
Can we have a hierarchical packages in Common Lisp.
I have a package "pack1" and in pack1 i have package pack2. And few
symbols are exported from pack2.
Now from package acl, can use symbols of pack2. I mean can i use
pack1.pack2.<symbol name> to use the symbols.
Thank you in advance.
-Raghuram
In article <···························@posting.google.com>,
···············@yahoo.com (Raghuram) wrote:
> HI,
> Can we have a hierarchical packages in Common Lisp.
> I have a package "pack1" and in pack1 i have package pack2. And few
> symbols are exported from pack2.
> Now from package acl, can use symbols of pack2. I mean can i use
> pack1.pack2.<symbol name> to use the symbols.
>
> Thank you in advance.
>
> -Raghuram
You might be interested in my ILC talk. It's about how you can implement
a hierarchical module (not package) system entirely within ANSI standard
CL.
E.
··························@jpl.nasa.gov (Erann Gat) writes:
> In article <···························@posting.google.com>,
> ···············@yahoo.com (Raghuram) wrote:
>
> > HI,
> > Can we have a hierarchical packages in Common Lisp.
> > I have a package "pack1" and in pack1 i have package pack2. And few
> > symbols are exported from pack2.
> > Now from package acl, can use symbols of pack2. I mean can i use
> > pack1.pack2.<symbol name> to use the symbols.
> >
> > Thank you in advance.
> >
> > -Raghuram
>
> You might be interested in my ILC talk. It's about how you can implement
> a hierarchical module (not package) system entirely within ANSI standard
> CL.
Where can we find it?
--
__Pascal_Bourguignon__
http://www.informatimago.com/
Do not adjust your mind, there is a fault in reality.
In article <··············@thalassa.informatimago.com>, Pascal Bourguignon
<····@thalassa.informatimago.com> wrote:
> ··························@jpl.nasa.gov (Erann Gat) writes:
>
> > In article <···························@posting.google.com>,
> > ···············@yahoo.com (Raghuram) wrote:
> >
> > > HI,
> > > Can we have a hierarchical packages in Common Lisp.
> > > I have a package "pack1" and in pack1 i have package pack2. And few
> > > symbols are exported from pack2.
> > > Now from package acl, can use symbols of pack2. I mean can i use
> > > pack1.pack2.<symbol name> to use the symbols.
> > >
> > > Thank you in advance.
> > >
> > > -Raghuram
> >
> > You might be interested in my ILC talk. It's about how you can implement
> > a hierarchical module (not package) system entirely within ANSI standard
> > CL.
>
> Where can we find it?
At ILC of course.
E.
··························@jpl.nasa.gov (Erann Gat) wrote in message
> > > You might be interested in my ILC talk. It's about how you can implement
> > > a hierarchical module (not package) system entirely within ANSI standard
> > > CL.
> >
> > Where can we find it?
>
> At ILC of course.
>
Was this found, in the end?
From: Marco Baringer
Subject: Re: Can we have a hierarchical packages
Date:
Message-ID: <m2vfr082uz.fsf@bese.it>
···············@yahoo.com (Raghuram) writes:
> Can we have a hierarchical packages in Common Lisp.
google is your friend.
There is a specification here:
http://www.franz.com/support/documentation/6.1/doc/packages.htm
And an implementation here:
http://www.tfeb.org/lisp/hax.html#HIERARCHICAL-PACKAGES
--
-Marco
Ring the bells that still can ring.
Forget your perfect offering.
There is a crack in everything.
That's how the light gets in.
-Leonard Cohen
···············@yahoo.com (Raghuram) writes:
> HI,
> Can we have a hierarchical packages in Common Lisp.
> I have a package "pack1" and in pack1 i have package pack2. And few
> symbols are exported from pack2.
> Now from package acl, can use symbols of pack2. I mean can i use
> pack1.pack2.<symbol name> to use the symbols.
>
> Thank you in advance.
Yes, there are hierarchical packages already available.
Look here
http://lwn.net/2002/0404/a/lispnames.php3
for more information.
Thank You all, now got the required information.
Mario S. Mommer <········@yahoo.com> wrote in message news:<··············@cupid.igpm.rwth-aachen.de>...
> ···············@yahoo.com (Raghuram) writes:
> > HI,
> > Can we have a hierarchical packages in Common Lisp.
> > I have a package "pack1" and in pack1 i have package pack2. And few
> > symbols are exported from pack2.
> > Now from package acl, can use symbols of pack2. I mean can i use
> > pack1.pack2.<symbol name> to use the symbols.
> >
> > Thank you in advance.
>
> Yes, there are hierarchical packages already available.
>
> Look here
>
> http://lwn.net/2002/0404/a/lispnames.php3
>
> for more information.