1
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-10-04 14:23:17 +00:00
forgejo/vendor/github.com/jtolds/gls/gen_sym.go
2016-11-04 08:43:11 +01:00

13 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()}
}