Hello,
Does anyone have another idea on how to extend a unit or struct by two value of a field at a time? (macro'less I would prefer, micro'with I already have a solution)
type foo_t : [one, two, three];
unit foo_u {
foo_field : foo_t;
};
extend [one, two]'foo_field foo_u {
// enjoy here
};
Thanks,
Catalin