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_active

shouldn't be possible ... neither with autobox

According to the autobox manual, it is possible:
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
    Interesting ...thx.

    (... I can't tell if I like this extra feature or not ... ?)

    Cheers Rolf