1
1
mirror of https://github.com/go-gitea/gitea synced 2024-07-01 15:45:48 +00:00
gitea/vendor/github.com/jtolds/gls/gen_sym.go
2016-11-04 08:43:11 +01:00

14 lines
289 B
Go

package gls
var (
symPool = &idPool{}
)
// ContextKey is a throwaway value you can use as a key to a ContextManager
type ContextKey struct{ id uint }
// GenSym will return a brand new, never-before-used ContextKey
func GenSym() ContextKey {
return ContextKey{id: symPool.Acquire()}
}