mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 11:57:39 +03:00
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:
parent
ad670bab68
commit
36acc18bfb
1 changed files with 4 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue