|
|
|
|
|
by paholg
690 days ago
|
|
The difference is mostly a matter of perspective, isn't it? In Rust, if I have ```
enum Foo {
A(u32),
B(u32),
C(u32),
}
``` Then the number of representable states is deduced my an "algebra of numbers", but the size is deduced by an "algebra of sets". For example, the size of Foo is just 8 (4 bytes for u32, and 4 for the tag + alignment). |
|
Is I + J the same type as X + Y?
If your types are tagged, they aren't. Because that's what tags do.