Author: lwall
Date: 2009-01-13 20:30:15 +0100 (Tue, 13 Jan 2009)
New Revision: 24895
Modified:
docs/Perl6/Spec/S03-operators.pod
docs/Perl6/Spec/S06-routines.pod
Log:
[S03] remove .contains fossil
Modified: docs/Perl6/Spec/S03-operators.pod
=
On 2009 Jan 12, at 15:17, Ovid wrote:
"
בָּרוּךְ שֵׁם כְּבוֹד מַלְכוּתוֹ
לְעוֹלָם וָעֶד."
If you can't see that in your client, that's Hebrew from http://www.i18nguy.com/unicode/shma.html
and means "Hear O Israel, the Lord is our God, the Lord is One".
Actually that's the res
On Mon, Jan 12, 2009 at 02:02:38PM -0800, Larry Wall wrote:
>
> As for Perl6Array, that's a rakudo type, not a Perl 6 type, so I
> can't speak for it. I'd just as soon that the name not show up in
> Perl 6's namespace, if I had my druthers.
As far as I know, "Perl6Array" should _not_ be showing
On Tue, Jan 13, 2009 at 08:19:25AM -0600, Patrick R. Michaud wrote:
> > > @array».=trim
> >
> > Won't that fail with 'No such method' on an array of hashes?
> > Or are hyperops applied recursively?
>
> I would expect this to be roughly equivalent to:
>
> for @array { $_ .= trim; }
>
>
Ovid wrote:
> What should this output?
>
> my @array = ' foo ', ' bar ';
> @array .= trim;
>
> say @array.perl;
>
> And what if I have an array of hashes of hashes of arrays?
>
> Currently you can call 'trim' on arrays, but it's a no-op. Similar issues
> with chomp and friends.
On Mon, Jan 12, 2009 at 03:30:05PM -0800, Ovid wrote:
> > From: Larry Wall
> > : my @array = ' foo ', ' bar ';
> > : @array .= trim;
> > : say @array.perl;
> > :
> > : And what if I have an array of hashes of hashes of arrays?
> > :
> > : Currently you can call 'trim' on arrays, bu
* Ovid [2009-01-13 00:35]:
>* Larry Wall [2009-01-13 00:25]:
>> It should probably say "No such method". We have hyperops now
>> to apply scalar operators to composite values explicitly:
>>
>> @array».=trim
>
>
> Won't that fail with 'No such method' on an array of hashes? Or
> are hyperops