mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
ab681b3116
their named symbols.
15 lines
535 B
Plaintext
15 lines
535 B
Plaintext
Declaring constants is very convenient for writing programs, but as
|
|
they're often inlined by Perl, retrieving their symbolic names can be
|
|
tricky. This is made worse with lowlevel modules that use constants for
|
|
bit-twiddling.
|
|
|
|
Devel::Constants makes this much more manageable.
|
|
|
|
It silently wraps around the constant module, intercepting all constant
|
|
declarations. It builds a hash, associating the values to their names.
|
|
The names can then be retrieved as necessary.
|
|
|
|
WWW: http://search.cpan.org/search?dist=Devel-Constants
|
|
|
|
-- Anton
|