private methods and role composition

2005-11-05 Thread Jonathan Lang
First off: is there a way to declare a method as being private to a role? Second: can a role reclassify as private a method that is composed into it from another role? -- Jonathan Dataweaver Lang

Re: This week's summary

2005-11-05 Thread Michele Dondi
On Fri, 4 Nov 2005, The Perl 6 Summarizer wrote: Slightly tangentially to this, Dan Sugalski blogged a couple of weeks ago about his successes and failures with Parrot. The comments are worth reading -- there's a fair few more or less well founded complaints about the way the Perl 6

Re: Ways to add behavior

2005-11-05 Thread Larry Wall
On Sat, Nov 05, 2005 at 01:55:11AM +0100, TSa wrote: : Larry Wall wrote: : The notion of constraints or limitations is already conveyed by : where, and some subtypes may just be aliases. : : Wouldn't 'bound' work? Perhaps combined with 'on': : : bound SmallInt on Int where { 0 $_ 100 }; : :