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

10 lines
99 B
Go
Raw Normal View History

package function
func Ref[A any](a A) *A {
return &a
}
func Deref[A any](a *A) A {
return *a
}