Thread
Konstruktor mit einer Hashliste die ein Array beinhaltet?
(16 answers)
Opened by
MGlutaeus
at
2008-12-10 16:36
Gast Gast
2008-12-10 22:26
Code: (
dl
)
foreach (qw/value/){ $self->set($_ => shift); }
ist einfach
Code (perl): (
dl
)
$self
->
set
(
value
=>
shift
(
@_
));
View full thread
Konstruktor mit einer Hashliste die ein Array beinhaltet?