Move AppendUstr(), AppendUint() into helpers

This commit is contained in:
Harshavardhana
2015-03-01 11:18:34 -08:00
parent 9fb67c4195
commit eb9a4a83ac
2 changed files with 21 additions and 11 deletions

View File

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