Skip to content

Instantly share code, notes, and snippets.

@brendanzab
Last active August 29, 2015 14:13
Show Gist options
  • Select an option

  • Save brendanzab/02f09e37fa5e29b890ec to your computer and use it in GitHub Desktop.

Select an option

Save brendanzab/02f09e37fa5e29b890ec to your computer and use it in GitHub Desktop.
digraph widening {
node [style=filled, colorscheme=pastel13, color=2] "i8"; "i16"; "i32"; "i64";
node [style=filled, colorscheme=pastel13, color=3] "u8"; "u16"; "u32"; "u64";
"i8" -> "i16"
"i8" -> "i32"
"i8" -> "i64"
"i16" -> "i32"
"i16" -> "i64"
"i32" -> "i64"
"u8" -> "u16"
"u8" -> "i16"
"u8" -> "u32"
"u8" -> "i32"
"u8" -> "u64"
"u8" -> "i64"
"u16" -> "u32"
"u16" -> "i32"
"u16" -> "u64"
"u16" -> "i64"
"u32" -> "u64"
"u32" -> "i64"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment