Files
secretive/Sources/Packages/Sources/Common/Locks.swift
Max Goedjen 8b428e6c64 More cleanup
2025-08-10 23:08:17 -07:00

15 lines
244 B
Swift

import os
public extension OSAllocatedUnfairLock where State: Sendable {
var lockedValue: State {
get {
withLock { $0 }
}
nonmutating set {
withLock { $0 = newValue }
}
}
}