gobstore/all.go
2025-01-12 02:51:51 -07:00

8 lines
138 B
Go

package gobstore
// All returns the entire map
func (j *GobStore[T]) All() map[string]T {
j.Lock()
defer j.Unlock()
return j.values
}