Files
QSfera/vendor/github.com/samber/lo/internal/xtime/noCopy.go
T
2026-02-09 14:23:24 +01:00

15 lines
392 B
Go

package xtime
// noCopy may be added to structs which must not be copied
// after the first use.
//
// See https://golang.org/issues/8005#issuecomment-190753527
// for details.
//
// Note that it must not be embedded, due to the Lock and Unlock methods.
type noCopy struct{}
// Lock is a no-op used by -copylocks checker from `go vet`.
func (*noCopy) Lock() {}
func (*noCopy) Unlock() {}