Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^3: Perl oddities

by jmcnamara (Monsignor)
on Mar 01, 2005 at 16:26 UTC ( [id://435510]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Perl oddities
in thread Perl oddities


In the above case yes but as the number of keys is increased the buckets will get reused and the result won't be correct:
$ perl -le '%h = (1 .. 10); print scalar %h' 5/8 $ perl -le '%h = (1 .. 12); print scalar %h' 5/8 $ perl -le '%h = (1 .. 100); print scalar %h' 33/64
:-)

Actually, I searched for a genuine use for this feature for a long time and I almost found one: Power Twool.

--
John.

Replies are listed 'Best First'.
Re^4: Perl oddities
by fergal (Chaplain) on Mar 01, 2005 at 18:19 UTC
    Oops. I completely misread your original post. I thought it was elements/buckets, not used/total. That said, given Perl's non-object data model, the only other way to provide this info would be through yet another function.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (9)
As of 2024-04-18 20:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found