v0.0.439
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 1m38s

This commit is contained in:
2024-04-25 11:47:16 +02:00
parent 47b6a6b508
commit fed8bccaab
2 changed files with 6 additions and 2 deletions

View File

@@ -27,6 +27,10 @@ func DblPtrNil[T any]() **T {
return &v
}
func ArrPtr[T any](v ...T) *[]T {
return &v
}
func PtrInt32(v int32) *int32 {
return &v
}