|
|
|
|
|
by proto_lambda
1317 days ago
|
|
How would that work in a memory safe language? Rust does have (named) untagged unions already (using the `union` keyword), but they are unsafe to use because there is no way to know statically which of the possible variants a given value contains. |
|