mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-05 21:47:36 +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
|
@ -17,19 +17,6 @@ func NoArticle(name string) string {
|
|||
return name
|
||||
}
|
||||
|
||||
func InsertString(slice []string, value string, index int) []string {
|
||||
return append(slice[:index], append([]string{value}, slice[index:]...)...)
|
||||
}
|
||||
|
||||
func RemoveString(slice []string, index int) []string {
|
||||
return append(slice[:index], slice[index+1:]...)
|
||||
}
|
||||
|
||||
func MoveString(slice []string, srcIndex int, dstIndex int) []string {
|
||||
value := slice[srcIndex]
|
||||
return InsertString(RemoveString(slice, srcIndex), value, dstIndex)
|
||||
}
|
||||
|
||||
func BreakUpStringSlice(items []string, chunkSize int) [][]string {
|
||||
numTracks := len(items)
|
||||
var chunks [][]string
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue