Add Ptr function to common

A new function Ptr has been added to common/cond.go. This function returns address of any type of object that is passed as an argument to it. This enhancement will be useful in many scenarios where pointer to an object is required.
This commit is contained in:
世界 2023-12-10 21:47:32 +08:00
parent ad670bab68
commit 36acc18bfb
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -336,6 +336,10 @@ func DefaultValue[T any]() T {
return defaultValue
}
func Ptr[T any](obj T) *T {
return &obj
}
func Close(closers ...any) error {
var retErr error
for _, closer := range closers {