Thread Array-Slice mit .. Aufzählung (5 answers)
Opened by GwenDragon at 2010-05-16 18:07

pq
 2010-05-16 18:10
#137138 #137138
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
aus perlop:
Quote
Range Operators
Binary ".." is the range operator, which is really two different operators depending
on the context. In list context, it returns a list of values counting (up by ones)
from the left value to the right value. If the left value is greater than the right
value then it returns the empty list.

warum das so implementiert ist, kann ich dir allerdings auch nicht sagen =)
will man eine absteigende folge, braucht man reverse().
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread Array-Slice mit .. Aufzählung