1
0
mirror of https://github.com/IBM/fp-go.git synced 2025-06-17 00:07:49 +02:00
Files
fp-go/function/type.go

6 lines
64 B
Go
Raw Normal View History

package function
func ToAny[A any](a A) any {
return any(a)
}