I have an Ada enum with 2 values type Polarity is (Normal, Reversed), and I would like to convert them to 0, 1 (or True, False--as Boolean seems to implicitly play nice as binary) respectively, so I can store their values as specific bits in a byte. How can I accomplish this?
|
|
An easy way is a lookup table:
then use it as
Of course there is nothing wrong with using the 'Pos attribute, but the LUT makes the mapping readable and very obvious. As it is constant, you'd like to hope it optimises away during the constant folding stage, and it seems to: I have used similar tricks compiling for AVR with very acceptable executable sizes (down to 0.6k to independently drive 2 stepper motors) |
|||||
|
|
3.5.5 Operations of Discrete Types include the
You can change the numbering using 13.4 Enumeration Representation Clauses. ...and, of course:
|
|||||
|
|
I think what you are looking for is a record type with a representation clause:
As The representation clause for My definition of |
||||
|
|
|
Two points here: 1) Enumerations are already stored as binary. Everything is. In particular, your enumeration, as defined above, will be stored as a If you want to get that value out of the enumeration as an 2) Enumerations are nice, but don't reinvent A particular pet peeve of mine is when people end up defining themselves a custom boolean with the logic reversed (so its true condition is 0). If you do this, the ghost of Ada Lovelace will come back from the grave and force you to listen to an exhaustive explanation of how to calculate Bernoulli sequences with a Difference Engine. Don't let this happen to you! So if it would never make sense to have a third enumeration value, you just name objects something appropriate describing the |
|||||||
|
|
It seems all I needed to do was |
|||
|
|


