21
0
Fork 0

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

This commit is contained in:
Mike Schwörer 2024-04-25 11:47:16 +02:00
parent 47b6a6b508
commit fed8bccaab
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
2 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,5 @@
package goext
const GoextVersion = "0.0.438"
const GoextVersion = "0.0.439"
const GoextVersionTimestamp = "2024-04-25T11:40:01+0200"
const GoextVersionTimestamp = "2024-04-25T11:47:16+0200"

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
}