1 2 3 4 5 6 7
package utils import "unsafe" func CastStringSlice[OutType, InType ~string](src []InType) []OutType { return *(*[]OutType)(unsafe.Pointer(&src)) }