v0.0.169
This commit is contained in:
parent
ffc57b7e89
commit
2f01a1d50f
@ -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"
|
||||
|
@ -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
|
||||
}
|
Loading…
Reference in New Issue
Block a user