aboutsummaryrefslogtreecommitdiff
path: root/go/utils
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fischer@muhq.space>2023-02-08 17:50:10 +0100
committerFlorian Fischer <florian.fischer@muhq.space>2025-08-20 15:50:10 +0200
commit45df9bf319d38db916ca983b8c92bb912f5ce9ee (patch)
treed7966002dad4a20bc3ef385bd152554fe278a6df /go/utils
parenteb10f6f4940ecd09fd7d881fe5e1735ff146f919 (diff)
downloadmuhqs-game-45df9bf319d38db916ca983b8c92bb912f5ce9ee.tar.gz
muhqs-game-45df9bf319d38db916ca983b8c92bb912f5ce9ee.zip
intermediate commit
Diffstat (limited to 'go/utils')
-rw-r--r--go/utils/slices.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/go/utils/slices.go b/go/utils/slices.go
index d2bc04c1..3cc38c1c 100644
--- a/go/utils/slices.go
+++ b/go/utils/slices.go
@@ -7,3 +7,11 @@ func TypedSliceToInterfaceSlice[T any](s []T) []interface{} {
}
return is
}
+
+func InterfaceSliceToTypedSlice[T any](s []interface{}) []T {
+ ts := make([]T, 0, len(s))
+ for _, t := range s {
+ ts = append(ts, t.(T))
+ }
+ return ts
+}