# table-enum
![Icon](https://raw.githubusercontent.com/sirwhinesalot/table-enum/main/table-enum-icon.svg) A convenient rust macro to create enums with associated constant data. It lets you associate constant values to enum variants, similar to how [enums work in Java](https://docs.oracle.com/javase/tutorial/java/javaOO/enum.html), or how [X macros](https://en.wikipedia.org/wiki/X_macro) are often used in C. Only the enum tag is ever passed around, the data is accessed through generated const fn functions that match the enum tag to the relevant data. This is different from how enums are typically used in Rust, which are actually tagged unions. (also known as variant types or sum types in computer science theory). ## When would you use this? An example where non-tagged-union[^1] enums are very useful is compiler or interpreter development. For example: ```rust use table_enum::table_enum; table_enum! { enum BinaryOp(#[constructor] text: &'static str, precedence: i32, #[default] right_assoc: bool) { Add("+", 10, _), Sub("-", 10, _), Mul("*", 20, _), Div("/", 20, _), Pow("**", 30, true), ... } } ``` [^1]: I really wish Rust and Swift hadn't called their tagged unions "enums". To me enums are meant to be used as in this macro. A tagged union should be a kind of *union*. ## How does it work? The example above expands into the following code: ```rust enum BinaryOp { Add, Sub, Mul, Div, Pow, ... } impl BinaryOp { const fn text(&self) -> &'static str { match self { BinaryOp::Add => "+", BinaryOp::Sub => "-", BinaryOp::Mul => "*", BinaryOp::Div => "/", BinaryOp::Pow => "**", ... } } pub fn new(text: &'static str) -> Option