1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2024-09-19 08:29:08 +00:00
arikawa/utils/moreatomic/string.go

19 lines
234 B
Go
Raw Normal View History

package moreatomic
import "sync/atomic"
type String struct {
v atomic.Value
}
func (s *String) Get() string {
if v, ok := s.v.Load().(string); ok {
return v
}
return ""
}
func (s *String) Set(str string) {
s.v.Store(str)
}