mirror of
https://github.com/wweir/sower.git
synced 2024-04-21 12:42:15 +00:00
7 lines
116 B
Go
7 lines
116 B
Go
package suffixtree
|
|
|
|
func GCSlice[T any](arr []T) []T {
|
|
old := arr
|
|
return append(make([]T, 0, len(old)), old...)
|
|
}
|