in reply to Re^6: Benefits of everything is an object? Or new sigils?
in thread Benefits of everything is an object? Or new sigils?
BTW: > @employees->list_activeAccording to the autobox manual, it is possible:shouldn't be possible ... neither with autobox
Values beginning with the array @ and hash % sigils are passed by refe +rence, i.e. under the default bindings: @array->join(', ') @{ ... }->length() %hash->keys() %$hash->values() are equivalent to: ARRAY::join(\@array, ', ') ARRAY::length(\@{ ... }) HASH::keys(\%hash) HASH::values(\%$hash)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^8: Benefits of everything is an object? Or new sigils?
by LanX (Saint) on Mar 03, 2010 at 16:42 UTC |