While reading about the pragma overload of Perl5, I noticed the operator *{}.
I'd like to know what kind of sigil * is, if any, or what's the meaning of * in a ref context.
|
While reading about the pragma overload of Perl5, I noticed the operator I'd like to know what kind of sigil |
|||||
|
|
The primary purpose of globs is to server as entries for Perl's symbol table. The symbol table holds all symbols that belong to a package and all "truly global" variables (e.g.
Globs are also used as wrappers around IO objects (file handles). Even Globs are very rarely used explicitly in Perl. The one exception is old-style file handles. For example,
So why would you want to override You would want to override |
||||
|
|
|
It refers to a typeglob. It can refer to any type. They are mostly legacy now. |
|||||||||||
|