mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 09:22:22 -07:00
3f935bea25
This adds a feature to `union` which requires all the variants to have a `nil` value and on assign to the union, checks whether that value is `nil` or not. If the value is `nil`, the union will be `nil` (thus sharing the `nil` value)