mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
16 lines
362 B
Go
16 lines
362 B
Go
// Package gg implements simple "extensions" to Go language. Based on https://github.com/icza/gog
|
|
package gg
|
|
|
|
// P returns a pointer to the input value
|
|
func P[T any](v T) *T {
|
|
return &v
|
|
}
|
|
|
|
// V returns the value of the input pointer, or a zero value if the input pointer is nil.
|
|
func V[T any](p *T) T {
|
|
if p == nil {
|
|
var zero T
|
|
return zero
|
|
}
|
|
return *p
|
|
}
|