1
0
Fork 0
mirror of https://github.com/anyproto/anytype-heart.git synced 2025-06-09 09:35:00 +09:00

Integrate: many fixes

This commit is contained in:
Sergey 2024-07-30 23:04:58 +02:00
parent e38808bb6c
commit 37376ff141
No known key found for this signature in database
GPG key ID: 3B6BEF79160221C6
17 changed files with 127 additions and 118 deletions

View file

@ -245,3 +245,11 @@ func StringsInto[T ~string](from []string) []T {
}
return to
}
func IntoStrings[T ~string](from []T) []string {
to := make([]string, len(from))
for i, v := range from {
to[i] = string(v)
}
return to
}