mirror of
https://github.com/PretendoNetwork/nex-protocols-common-go.git
synced 2025-04-02 11:02:13 -04:00
7 lines
187 B
Go
7 lines
187 B
Go
package common_globals
|
|
|
|
// DeleteIndex removes a value from a slice with the given index
|
|
func DeleteIndex(s []uint32, index int) []uint32 {
|
|
s[index] = s[len(s)-1]
|
|
return s[:len(s)-1]
|
|
}
|