(self: TReentrantLock.TReentrantLock)
| 182 | |
| 183 | /** @internal */ |
| 184 | export const acquireRead = (self: TReentrantLock.TReentrantLock): STM.STM<number> => adjustRead(self, 1) |
| 185 | |
| 186 | /** @internal */ |
| 187 | export const acquireWrite = (self: TReentrantLock.TReentrantLock): STM.STM<number> => |
no test coverage detected