Google index and subsets (two topics for the price of one!)

2008-06-09 Thread Ovid
Anyone have any idea why Google is not indexing the official Perl 6 documentation at perlcabal.org/syn? I checked the robots.txt and it looks fine: http://www.perlcabal.org/robots.txt But the search box on http://www.perlcabal.org/syn/ returns nothing. Specifically, I was looking for the docu

Re: Google index and subsets (two topics for the price of one!)

2008-06-09 Thread Moritz Lenz
Ovid wrote: > Anyone have any idea why Google is not indexing the official Perl 6 > documentation at perlcabal.org/syn? I checked the robots.txt and it > looks fine: > > http://www.perlcabal.org/robots.txt > > But the search box on http://www.perlcabal.org/syn/ returns nothing. The whole doma

Re: Google index and subsets (two topics for the price of one!)

2008-06-09 Thread Jonathan Worthington
Ovid wrote: Specifically, I was looking for the documentation on how subsets work See S12: http://dev.perl.org/perl6/doc/design/syn/S12.html#Types_and_Subtypes as it looks like we can get declarative style constraint programming for free: subset Crosshair of Point where { $_.inside_of($t

Re: Google index and subsets (two topics for the price of one!)

2008-06-09 Thread Ovid
--- Moritz Lenz <[EMAIL PROTECTED]> wrote: > Ovid wrote: > > Anyone have any idea why Google is not indexing the official Perl 6 > > documentation at perlcabal.org/syn? I checked the robots.txt and > it > > looks fine: > > > > http://www.perlcabal.org/robots.txt > > > > But the search box on

Re: Google index and subsets (two topics for the price of one!)

2008-06-09 Thread Jonathan Worthington
Ovid wrote: Well, looking at the examples that you and Jonathan listed, I see I should refine my question. For example: subset Crosshair of Point where { $_.inside_of($target_area) || $target_area.has_moved ?? $_.move_inside($target_area) :: $target_area.move_outside

Re: Google index and subsets (two topics for the price of one!)

2008-06-09 Thread Ovid
--- Jonathan Worthington <[EMAIL PROTECTED]> wrote: > Ovid wrote: > > By default, block parameters (including $_) are readonly, I hope that is a deep readonly? In other words, if $_.position returns an array reference, can I mutate a value in that reference and the state of $_ is thereby changed

Re: Foo.HOW.metamethod vs Foo.^metamethod

2008-06-09 Thread Larry Wall
On Sat, Jun 07, 2008 at 09:49:03PM +0100, Daniel Ruoso wrote: : 2) Assume the capture-translation and define that : $foo.HOW.can($foo,'bar') keeps the $how as the invocant and must receive : the referring object as first argument. I prefer this approach, I think. Larry

Re: Google index and subsets (two topics for the price of one!)

2008-06-09 Thread Daniel Ruoso
Seg, 2008-06-09 às 23:36 +0100, Ovid escreveu: > --- Jonathan Worthington <[EMAIL PROTECTED]> wrote: > > By default, block parameters (including $_) are readonly, > I hope that is a deep readonly? In other words, if $_.position returns > an array reference, can I mutate a value in that reference a

Re: Google index and subsets (two topics for the price of one!)

2008-06-09 Thread Daniel Ruoso
Seg, 2008-06-09 às 23:09 +0100, Ovid escreveu: > Well, looking at the examples that you and Jonathan listed, I see I > should refine my question. For example: > subset Crosshair of Point where { > $_.inside_of($target_area) > || > $target_area.has_moved > ?? $_.move_inside($ta