intval = convert("42").unwrap()
if intval, err := convert("42"); err != nil { panic(err) }
intval = convert("42")
intval, _ := convert("42")
intval := mustConvert("42")
in go, but 'must' type functions don't exist for every method in every library.
intval := mustConvert("42")
in go, but 'must' type functions don't exist for every method in every library.