mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-06 22:17:37 +03:00
Move string slice functions to slice package as generic functions
This commit is contained in:
parent
c4c99b7f75
commit
3fc4313e89
5 changed files with 67 additions and 65 deletions
|
@ -41,3 +41,16 @@ func MostFrequent[T comparable](list []T) T {
|
|||
|
||||
return topItem
|
||||
}
|
||||
|
||||
func Insert[T any](slice []T, value T, index int) []T {
|
||||
return append(slice[:index], append([]T{value}, slice[index:]...)...)
|
||||
}
|
||||
|
||||
func Remove[T any](slice []T, index int) []T {
|
||||
return append(slice[:index], slice[index+1:]...)
|
||||
}
|
||||
|
||||
func Move[T any](slice []T, srcIndex int, dstIndex int) []T {
|
||||
value := slice[srcIndex]
|
||||
return Insert(Remove(slice, srcIndex), value, dstIndex)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue