Style guide
- If converting between less-specific and more-specific types, put the conversion functions in the more specific type
- eg
UUID::parse (String) -> UUID
- eg
String::toInt (String -> Int)
- eg
UUID::parse (String) -> UUID
String::toInt (String -> Int)