Files
protocol/utils/slice.go
Paul Wells 2f77f28ac9 add helpers for room tags (#1475)
* add helpers for room tags

* typo

* tidy
2026-04-02 13:44:56 -07:00

8 lines
150 B
Go

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