8 lines
150 B
Go
8 lines
150 B
Go
package utils
|
|
|
|
import "unsafe"
|
|
|
|
func CastStringSlice[OutType, InType ~string](src []InType) []OutType {
|
|
return *(*[]OutType)(unsafe.Pointer(&src))
|
|
}
|