func read()

in MobiusCore/Source/Lock.swift [42:46]


    func read(in closure: (Value) throws -> Void) rethrows {
        try lock.sync {
            try closure(storage)
        }
    }