Coding Packets Blog

Author Archives: Coding Packets Blog

Crystal Notes: Enums

Enums group a related number of values and store the values internally as integers. Enums are good to use when the number of values are not too big. Considerations Enums are a type safe alternative to Symbols. It is recommended to use Enums whenever possible and only use Symbols for an...continue reading

1 5 6 7 8 9 28