On Thu, Mar 13, 2003 at 01:47:19PM -0500, Chris Dutton wrote:
> This may have been asked before, and I apologize if I somehow missed it, 
> but can junctions be used for multiple properties?
> 
> I can see it possibly being useful in a situation like the 
> following(which may be completely off, as I'm still digging my way 
> through A6):
> 
> class Foo {
>      method bar is public is rw {
> 
>      }
> }
> 
> Becoming:
> 
> class Foo {
>      method bar is public & rw {
> 
>      }
> }
> 
> Guess it just reads a bit better to me.

I don't think that junctions make sense here.  Besides, the "is" is
optional:

        class Foo { 
                method bar is public rw const frob knob { ... }
        }

-Scott
-- 
Jonathan Scott Duff
[EMAIL PROTECTED]

Reply via email to