Codebase list golang-github-anacrolix-missinggo / HEAD sync.go
HEAD

Tree @HEAD (Download .tar.gz)

sync.go @HEADraw · history · blame

package missinggo

import (
	"sync"
)

type RWLocker interface {
	sync.Locker
	RLock()
	RUnlock()
}