Extended the "export" command with an "-all" flag. When included, all rows of the table matching the query will be exported to CSV.
69 lines
1.2 KiB
Go
69 lines
1.2 KiB
Go
package sliceutils
|
|
|
|
func All[T any](ts []T, predicate func(t T) bool) bool {
|
|
for _, t := range ts {
|
|
if !predicate(t) {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
func Generate[U any](from, to int, fn func(t int) U) []U {
|
|
us := make([]U, to-from+1)
|
|
for i := from; i <= to; i++ {
|
|
us[i-from] = fn(i)
|
|
}
|
|
return us
|
|
}
|
|
|
|
func Map[T, U any](ts []T, fn func(t T) U) []U {
|
|
us := make([]U, len(ts))
|
|
for i, t := range ts {
|
|
us[i] = fn(t)
|
|
}
|
|
return us
|
|
}
|
|
|
|
func MapWithError[T, U any](ts []T, fn func(t T) (U, error)) ([]U, error) {
|
|
us := make([]U, len(ts))
|
|
|
|
for i, t := range ts {
|
|
var err error
|
|
us[i], err = fn(t)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
return us, nil
|
|
}
|
|
|
|
func Filter[T any](ts []T, fn func(t T) bool) []T {
|
|
us := make([]T, 0)
|
|
for _, t := range ts {
|
|
if fn(t) {
|
|
us = append(us, t)
|
|
}
|
|
}
|
|
return us
|
|
}
|
|
|
|
func FindFirst[T any](ts []T, fn func(t T) bool) (returnedT T, found bool) {
|
|
for _, t := range ts {
|
|
if fn(t) {
|
|
return t, true
|
|
}
|
|
}
|
|
return returnedT, false
|
|
}
|
|
|
|
func FindLast[T any](ts []T, fn func(t T) bool) (returnedT T, found bool) {
|
|
for i := len(ts) - 1; i >= 0; i-- {
|
|
t := ts[i]
|
|
if fn(t) {
|
|
return t, true
|
|
}
|
|
}
|
|
return returnedT, false
|
|
}
|