From 27400b0fce5d4ef3b7fd5ef4d25bac8f00754e33 Mon Sep 17 00:00:00 2001 From: "Gabriel A. Giovanini" Date: Sat, 15 Feb 2025 17:33:24 +0100 Subject: feat: Add wrapper for commit Add a wrapper to the commit log that also contains possible reference. This will be useful once to later display the reference in the commit log. --- pkg/u/list.go | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'pkg/u/list.go') diff --git a/pkg/u/list.go b/pkg/u/list.go index 835ecd2..1cffbd5 100644 --- a/pkg/u/list.go +++ b/pkg/u/list.go @@ -12,6 +12,14 @@ func Filter[T any](v []T, f func(T) bool) []T { return result } +func Map[T any, V any](a []T, f func(T) V) []V { + result := make([]V, len(a)) + for i, v := range a { + result[i] = f(v) + } + return result +} + func First[T any](v []T) (T, bool) { if len(v) == 0 { var zero T -- cgit v1.2.3