Move string slice functions to slice package as generic functions

This commit is contained in:
Deluan 2023-06-02 16:30:20 -04:00
parent c4c99b7f75
commit 3fc4313e89
5 changed files with 67 additions and 65 deletions

View file

@ -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