Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^2: new keyword "size" to avoid scalar trap ? ( scalar @array != scalar(LIST) )

by LanX (Saint)
on Dec 07, 2012 at 17:04 UTC ( [id://1007795]=note: print w/replies, xml ) Need Help??


in reply to Re: new keyword "size" to avoid scalar trap ? ( scalar @array != scalar(LIST) )
in thread new keyword "size" to avoid scalar trap ? ( scalar @array != scalar(LIST) )

hmm good point...

you are forcing everything into an array,

maybe

sub size { scalar @_ }
is easier to read.

it's like explicitly wrapping lists and arrays into scalar @{[ ... ]}

But w/o prototypes this would mean to copy huge arrays around...

And something like size %hash couldn't be extended to find scalar keys %hash.

Anyway your example fits as a proof of concept! =)

(But an efficient implementation should be done in XS. Edit: see benchmark)

Cheers Rolf

Replies are listed 'Best First'.
Re^3: new keyword "size" to avoid scalar trap ? ( scalar @array != scalar(LIST) )
by tobyink (Canon) on Dec 07, 2012 at 22:33 UTC

    Inline::C allows a pretty fast implementation...

    use 5.010; use Benchmark qw(cmpthese); use Inline C => <<'INLINE'; int count1 (SV* name1, ...) { Inline_Stack_Vars; return Inline_Stack_Items; } INLINE sub count2 { scalar @_ } sub count3 { 0 + @_ } sub count4 { my $_ = @_ } sub count5 (\@) { scalar @{$_[0]} } my @array = 'a'..'z'; my %implementations = ( count1 => sub { count1(@array) }, count2 => sub { count2(@array) }, count3 => sub { count3(@array) }, count4 => sub { count4(@array) }, count5 => sub { count5(@array) }, ); for my $i (sort keys %implementations) { say $i, ": ", $implementations{$i}->(); } cmpthese(250_000, \%implementations);

    XS may well allow faster still.

    perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1007795]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (3)
As of 2024-04-19 05:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found