1
0
mirror of https://github.com/IBM/fp-go.git synced 2025-11-25 22:21:49 +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
}