While tinkering with @David_Smith's excellent example ThreadsafeCounter, I got this error:
Stored property cannot have covariant 'Self' type.
import os
@main
enum CounterTest {
static func main () async {
let counter = ThreadsafeCounter ()
let N = 10 * 1024 * 1024
for _ in 0..<N {
Task.detached {
counter.increment ()
}
}
while counter.value < N {
counter.decrement()
counter.increment()
}
print (N, counter.value)
assert (N == counter.value)
}
}
final class ThreadsafeCounter {
private (set) var value: Int = 0
// var protectedCounter : OSAllocatedUnfairLock <ThreadsafeCounter>?
var protectedCounter : OSAllocatedUnfairLock <Self>?
// ^^^ Error: `Stored property cannot have covariant 'Self' type`
init () {
self.protectedCounter = OSAllocatedUnfairLock (initialState: self)
}
func increment() {
protectedCounter?.withLock {$0.value += 1}
}
func decrement () {
protectedCounter?.withLock {$0.value -= 1}
}
}
However, the error disappears if I substitute ThreadsafeCounter
for Self
.
Can anyone shed some light on this please?
Thank you.