Thread Array::Utils: Wie Rückgabewert als Liste interpretieren
(34 answers)
Opened by mika at 2018-11-18 12:25
Ah, das ginge z.B. so:
Code (perl): (dl
)
1 2 push @new, map { $_ // () } # nur nicht-undef (array_minus( @old, @new))[0..2]; Oder du schaust dir https://metacpan.org/pod/List::Slice an und nimmst von dort die Funktion head: Code (perl): (dl
)
push @new, head(3, array_minus(@old, @new)); Zum Unterschied zwischen Liste und Array: perldoc -q list array bzw. https://perldoc.perl.org/perlfaq4.html#What-is-the-difference-between-a-list-and-an-array%3f Last edited: 2018-11-18 13:42:11 +0100 (CET) |