Add cond PtrValueOrDefault

This commit is contained in:
世界 2022-07-02 21:52:07 +08:00
parent 2a0502dd66
commit 5cb4b5e5f0
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -162,6 +162,14 @@ func PtrOrNil[T any](ptr *T) any {
return ptr
}
func PtrValueOrDefault[T any](ptr *T) T {
if ptr == nil {
var defaultValue T
return defaultValue
}
return *ptr
}
func Close(closers ...any) error {
var retErr error
for _, closer := range closers {