Compare commits

..

3 Commits
v0.0.8 ... main

Author SHA1 Message Date
abeecfd797 added default unmapper functions for OfMap 2024-04-02 19:53:21 +02:00
5735640ab6 added FindFirstIndex and FindLastIndex 2024-02-20 16:06:41 +01:00
26ea846e93 - added FindFirst and FindLast
- removed Search
2024-02-20 16:03:29 +01:00
3 changed files with 39 additions and 11 deletions

View File

@ -9,3 +9,30 @@ func Filter[T any](slice []T, f func(T) bool) []T {
} }
return ret return ret
} }
func FindFirst[T any](slice []T, f func(T) bool) (T, bool) {
for _, v := range slice {
if f(v) {
return v, true
}
}
return *new(T), false
}
func FindFirstIndex[T any](slice []T, f func(T) bool) (int, bool) {
for i, v := range slice {
if f(v) {
return i, true
}
}
return -1, false
}
func FindLastIndex[T any](slice []T, f func(T) bool) (int, bool) {
for i := len(slice); i >= 0; i-- {
if f(slice[i]) {
return i, true
}
}
return -1, false
}

12
of.go
View File

@ -14,3 +14,15 @@ func OfMap[K comparable, V, T any](m map[K]V, unmapper func(K, V) T) []T {
} }
return out return out
} }
// UnmapKey is an unmapper function which returns the map key only
// and discards its value. It is supposed to be used with OfMap
func UnmapKey[K comparable, V any](key K, _ V) K {
return key
}
// UnmapValue is an unmapper function which returns the map value only
// and discards its key. It is supposed to be used with OfMap
func UnmapValue[K comparable, V any](_ K, value V) V {
return value
}

View File

@ -1,11 +0,0 @@
package slices
func Search[T any](slice []T, f func(a, b T) T) T {
if len(slice) == 0 {
return *new(T)
}
value := slice[0]
Each(slice, func(v T) { value = f(value, v) })
return value
}