format files

This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧
2026-04-02 20:00:51 -04:00
parent 303f2b79da
commit fc646e84cd
15 changed files with 37 additions and 18 deletions
+1 -1
View File
@@ -78,7 +78,7 @@ func SliceNilAsEmpty[T any](a []T) []T {
return a
}
func SliceMap[T any, R any](slice []T, mapper func(it T) R) []R {
func SliceMap[T, R any](slice []T, mapper func(it T) R) []R {
ret := make([]R, 0)
for _, it := range slice {
ret = append(ret, mapper(it))