trylock icon indicating copy to clipboard operation
trylock copied to clipboard

TryLock in stdlib

Open AlekSi opened this issue 4 years ago • 0 comments

TryLock was added in stdlib: https://github.com/golang/go/commit/645d07819b2224ba4d759829443f7c6442162c69

I think this library should use a type alias for sync.Mutex in Go 1.18:

//go:build go1.18
// +build go1.18

type Mutex = sync.Mutex

AlekSi avatar Oct 30 '21 07:10 AlekSi