MCPcopy Index your code
hub / github.com/WendellCraft/ModpackDebuggerKit / joinStrings

Function joinStrings

debug.go:375–384  ·  view source on GitHub ↗
(items []string, sep string)

Source from the content-addressed store, hash-verified

373}
374
375func joinStrings(items []string, sep string) string {
376 if len(items) == 0 {
377 return ""
378 }
379 result := items[0]
380 for _, s := range items[1:] {
381 result += sep + s
382 }
383 return result
384}

Callers 3

binarySearchMethod · 0.85
AddDependencyMethod · 0.85
modrinthSyncMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected