This commit is contained in:
Mike Schwörer 2023-07-05 19:27:49 +02:00
parent ffc57b7e89
commit 2f01a1d50f
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
2 changed files with 2 additions and 15 deletions

View File

@ -1,5 +1,5 @@
package goext
const GoextVersion = "0.0.168"
const GoextVersion = "0.0.169"
const GoextVersionTimestamp = "2023-07-05T19:27:15+0200"
const GoextVersionTimestamp = "2023-07-05T19:27:49+0200"

View File

@ -1,13 +0,0 @@
package langext
func EqualsPointerVal[T comparable](v1 *T, v2 *T) bool {
if v1 == nil && v2 == nil {
return true
}
if v1 == nil || v2 == nil {
return false
}
return *v1 == *v2
}