Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Re: cvs commit: parrot/ops cmp.ops ops.num

0 views
Skip to first unread message

Jens Rieks

unread,
Nov 27, 2004, 9:11:19 AM11/27/04
to l...@toetsch.at, perl6-i...@perl.org
On Saturday 27 November 2004, Leopold Toetsch wrote:
>   +  gt I0, I1, L1            => lt I1, I0, L1
>   +  isge I0, 100, I2    => isle I0, I2, 100
But a>=b (gt I0, I1) is equivalence to b<a (le I1, I0)
and not to b<=a (lt I1, I0)...? (The same for isge a, b <=> islt b, a)

jens

Leopold Toetsch

unread,
Nov 27, 2004, 9:49:10 AM11/27/04
to Jens Rieks, perl6-i...@perl.org

It's easy to get it wrong :) See also Nick's post.

(a <= b) := (a < b || a == b) := (b > a || a == b) ...

> jens

leo

0 new messages