Skip to content

Instantly share code, notes, and snippets.

@KodrAus
Created October 31, 2018 21:52
Show Gist options
  • Save KodrAus/94e1b27e3bd8eab5076ce424a8f356f9 to your computer and use it in GitHub Desktop.
Save KodrAus/94e1b27e3bd8eab5076ce424a8f356f9 to your computer and use it in GitHub Desktop.
MaybeInitialized
union MaybeInitialized<T> {
initialized: T,
uninitialized: (),
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment