Thread wantarray und return undef (20 answers)
Opened by rosti at 2012-02-10 13:15

GUIfreund
 2012-02-10 18:02
#156034 #156034
User since
2011-08-08
559 Artikel
BenutzerIn
[default_avatar]
2012-02-10T13:52:11 rosti
Ergo: Ich lasse mir das Anderes einfallen, wantarray ist an der Stelle, wo ich das gerne hätte, nicht wirklich brauchbar ;)

Doch. Ersetze einfach in deinem OP
Code (perl): (dl )
1
2
3
sub foo{
  return wantarray ? undef : 4711;
}
durch
Code (perl): (dl )
1
2
3
sub foo{
  return wantarray ? () : 4711;
}
Gruß
GUIfreund

View full thread wantarray und return undef