Hi,
I want to declare a 3 value'd enum equivalent - i.e. (mixing C and perl):
package My::Enum
use Moose;
typedef enum {A, B, C} enum_t; // knowledge in C - how do I
port this concept to Perl?
has 'b' => (isa => 'enum_t', is => 'rw');
1;
How would one go about doing that
Best Regards,
Dov Levenglick