Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^2: Pronoun Programming

by plobsing (Friar)
on Feb 05, 2008 at 06:02 UTC ( [id://666218]=note: print w/replies, xml ) Need Help??


in reply to Re: Pronoun Programming
in thread Pronoun Programming

You could of course tie your hash to return values that allow for something similar.

You would have to choose something other than delete $val to keep it simple, but $val->delete is almost as good. Unfortunately, this falls down on assignment. I can't think of any good way to do it ($val->set($newval) is probably as good as it gets).

Also, you'd have to do some nasty business about garbage collection. You wouldn't want to keep an entire hash around just because you still have one element of the hash.

Replies are listed 'Best First'.
Re^3: Pronoun Programming
by BrowserUk (Patriarch) on Feb 05, 2008 at 09:06 UTC

    I think a hash element reference would have to be a pointer to an HE struct. That contains pointers to both the key and it's value. The thing that is missing is some way to get back to the hash it is a part of, as they form a single linked list going in the wrong direction.

    There are several ways I would like to extend Perl's hashes, had I the skills and patience. This is one. Another would be to add timestamps to keys, that gets set when keys are created. That would allow for time ordered hashes which could be useful. And the same field could be used to order keys according to any arbitrary sorting order, which would be more space and time efficient than current tied hash+array hybrid solutions.

    But, as almost every attempt I've made at messing with Perl's internals has resulted in random, inexplicable crashes which my attempts to resolve have fallen on deaf ears and stoney ground, it's not something I am likely to get around to any time soon.


    Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
    "Science is about questioning the status quo. Questioning authority".
    In the absence of evidence, opinion is indistinguishable from prejudice.
      I tried implementing this out of curiousity. HE* DO have a pointer back to the original hash, but there's no guaranteeing that the hash is there any more.

      Thats why I tried using weakened references in stead. I would have used set/get magic if I was more comfortable with them, I never got those to work out for me before. Here's the begginings of the module (untested):

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (6)
As of 2024-04-25 12:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found