mirror of
https://github.com/minio/minio.git
synced 2025-11-07 04:42:56 -05:00
Move AppendUstr(), AppendUint() into helpers
This commit is contained in:
@@ -52,3 +52,21 @@ func Assert(err error) {
|
||||
func FirstUpper(str string) string {
|
||||
return strings.ToUpper(str[0:1]) + str[1:]
|
||||
}
|
||||
|
||||
func AppendUint(slice []int, i int) []int {
|
||||
for _, ele := range slice {
|
||||
if ele == i {
|
||||
return slice
|
||||
}
|
||||
}
|
||||
return append(slice, i)
|
||||
}
|
||||
|
||||
func AppendUstr(slice []string, i string) []string {
|
||||
for _, ele := range slice {
|
||||
if ele == i {
|
||||
return slice
|
||||
}
|
||||
}
|
||||
return append(slice, i)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user