Last active
August 29, 2015 14:13
-
-
Save brendanzab/02f09e37fa5e29b890ec to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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