meta_postfix:*

2008-07-13 Thread TSa (Thomas Sandlaß)
HaloO, I know that the hot phase of the operator discussions are over. But here's a little orthogonalizing idea from my side. The observation is that * can be regarded as repeated addition: 5 * 3 == 5 + 5 + 5 and ** as repeated multiplication. Now imagine having a meta_postfix:* that gives +* as

Re: meta_postfix:*

2008-07-13 Thread Jon Lang
So you're suggesting that A op* n should map to [op] A xx n ? -- Jonathan Dataweaver Lang

$foo[0][0] versus $foo[0;0]

2008-07-13 Thread Adrian Kreher
Hi, I'm reviewing the tests in S09, and the file t/spec/S02-builtin_data_types/multi_dimensional_array.t uses the [0][0] indexing format interchangeably with [0;0]. These two formats mean two different things, correct? The [0][0] form isn't mentioned much in the spec, nor is [0;0] or if they