ie some variable as SCALAR, HASH and ARRAY simultaneouslyThis isn't possible, even using XS and perlguts. The perl lexer sees these as three separate variables:
of course, you could tie all three variables, but that's probably not what you want.$x # lexer returns $x $x[0] # lexer returns @x ... $x{0} # lexer returns %x ...
Dave.
In reply to Re: tie and magic
by dave_the_m
in thread tie and magic
by pajout
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |