mirror of
https://github.com/IBM/fp-go.git
synced 2025-11-25 22:21:49 +02:00
6 lines
64 B
Go
6 lines
64 B
Go
package function
|
|
|
|
func ToAny[A any](a A) any {
|
|
return any(a)
|
|
}
|