Author: lwall
Date: 2009-09-01 02:09:52 +0200 (Tue, 01 Sep 2009)
New Revision: 28151
Modified:
docs/Perl6/Spec/S02-bits.pod
docs/Perl6/Spec/S06-routines.pod
Log:
[S02,S06] make 'is context' implicit on $*foo variable declarations
orthogonalize readonly semantics to rely on ::= initialization
Author: lwall
Date: 2009-09-01 01:42:06 +0200 (Tue, 01 Sep 2009)
New Revision: 28150
Modified:
docs/Perl6/Spec/S03-operators.pod
Log:
[S03] steal ::= for readonly binding ala sigs
Modified: docs/Perl6/Spec/S03-operators.pod
===
-
Patrick R. Michaud wrote:
On Mon, Aug 31, 2009 at 01:28:08PM -0700, Darren Duncan wrote:
This is a great move; thanks for this change.
So now writing things like 5/43 in code will DWIM and produce a Rat which
maintains the intended value exactly, with no floating-point imprecision;
and so pla
On Mon, Aug 31, 2009 at 01:28:08PM -0700, Darren Duncan wrote:
> This is a great move; thanks for this change.
>
> So now writing things like 5/43 in code will DWIM and produce a Rat which
> maintains the intended value exactly, with no floating-point imprecision;
> and so plain 5/43 is now a pla
pugs-comm...@feather.perl6.nl wrote:
Author: lwall
Date: 2009-08-29 21:06:40 +0200 (Sat, 29 Aug 2009)
New Revision: 28113
Modified:
docs/Perl6/Spec/S03-operators.pod
Log:
[S03] some tidying of /, %, div, and mod
@@ -699,7 +699,16 @@
$numerator / $denominator
-If either operand is
Author: lwall
Date: 2009-08-31 21:56:55 +0200 (Mon, 31 Aug 2009)
New Revision: 28146
Modified:
docs/Perl6/Spec/S02-bits.pod
Log:
[S02] remove fossil noticed by pmichaud++
Modified: docs/Perl6/Spec/S02-bits.pod
===
--- docs/Perl6/
On Mon, Aug 31, 2009 at 12:42 AM, TSa wrote:
>
> HaloO,
>
> Jon Lang wrote:
>>
>> '<' and '<=' numify their arguments before comparing them.
>> 'lt' and 'le' stringify their arguments before comparing them.
>> 'before' compares its arguments without any coercion. Note that
>> there's no equivalen
HaloO,
Jon Lang wrote:
'<' and '<=' numify their arguments before comparing them.
'lt' and 'le' stringify their arguments before comparing them.
'before' compares its arguments without any coercion. Note that
there's no equivalent to '<='.
This last one is !after and !before is '>='.
Regards