I have a type alias for string like
type SpecialScopes string
and I want to Join an array of this type using the strings.Join function
func MergeScopes(scopes ...SpecialScopes) SpecialScopes {
return strings.Join(scopes, ",")
}
But with the above I get the errors
cannot use scopes (type []SpecialScopes) as type []string in argument to strings.Join
cannot use strings.Join(scopes, ",") (type string) as type SpecialScopes in return argument
Is there a way to make golang realize that SpecialScopes is just another name for strings and do the join function on it? If not what is the most efficient way to go about doing this? One way I see is to cast all the elements in the array to string, join, then cast it back to SpecialScopes and return the value
Update 1: I have a working implementation that casts the values. Any suggestions for a faster way to do this?
func MergeScopes(scopes ...SpecialScopes) SpecialScopes {
var s []string
for _, scope := range scopes {
s = append(s, string(scope))
}
return SpecialScopes(strings.Join(s, ","))
}