Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / devel / p5-enum / DESCR
blob900320ee8b99c19cbbb06f8a5fc740b6d21f0cb4
1 Defines a set of symbolic constants with ordered numeric values ala C
2 enum types.
4 Now capable of creating creating ordered bitmask constants as well. See
5 the BITMASKS section for details.
7 What are they good for? Typical uses would be for giving mnemonic names
8 to indexes of arrays. Such arrays might be a list of months, days, or a
9 return value index from a function such as localtime():
11 use enum qw(:Months_=0 Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec);