v0.0.617
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 2m18s
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 2m18s
This commit is contained in:
@@ -97,3 +97,9 @@ func (mm *MultiMutex[TKey]) Get(key TKey) sync.Locker {
|
||||
lck := mm.mutextMap.GetAndSetIfNotContainsFunc(key, NewCASMutex)
|
||||
return lck
|
||||
}
|
||||
|
||||
// GetCAS returns the underlying CASMutex
|
||||
func (mm *MultiMutex[TKey]) GetCAS(key TKey) *CASMutex {
|
||||
lck := mm.mutextMap.GetAndSetIfNotContainsFunc(key, NewCASMutex)
|
||||
return lck
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
package goext
|
||||
|
||||
const GoextVersion = "0.0.616"
|
||||
const GoextVersion = "0.0.617"
|
||||
|
||||
const GoextVersionTimestamp = "2025-12-06T11:53:59+0100"
|
||||
const GoextVersionTimestamp = "2025-12-06T11:54:36+0100"
|
||||
|
||||
Reference in New Issue
Block a user