I don't think you can do it in XS, at least not with normal hashes .... anyway, see Readonly and ex::constant::vars cause they do that.
update: Yup, magic is needed (man that sounds funny).
MJD says you
can't just make shit up and expect the computer to know what you mean, retardo!
I run a Win32 PPM
repository for perl 5.6x+5.8x. I take requests.
** The Third rule of perl club is a statement of fact: pod is sexy.
|
| [reply] |
This is a very good question, and has been raised on p5p
in the past. As far as I know (which might not be far
enough - I'm doing more category theory than programming
these days) there is still no simple way to do what you
want.
The most concerted attempt to change this was made by
Jeff Friedl in 2001. Take a look at the threads starting
here,
here
and here. As you can see, the necessary code has all been written,
but doesn't seem to have been incorporated into perl.
You could try asking p5p about the status of this.
Update: On closer inspection, it seems that this
has been incorporated into Perl 5.8. Look at the
module Hash::Util. It seems that, in Perl 5.8,
the SvREADONLY flag does prevent new keys from
being added to a hash. What version of Perl are you using?
.robin. | [reply] |
Robin,
Thanks a lot for pointing me in the right direction...
I am currently using 5.6.1 but will most certainly upgrade to 5.8.x.
So the only way of enforcing that behavior for hashes will be to require 5.8.0; in my modules?
That will prevent users with older perl from using it...
Any thoughts?
Chris.
| [reply] [d/l] |
| [reply] |