Sign in
fuchsia
/
third_party
/
github.com
/
smartystreets
/
go-disruptor
/
297154ae7ba98cdf3a53fcf67f8746f7cadacefb
/
.
/
cursor_amd64.go
blob: 0a40b3d3f2f11ce4fc651132650537b323d039de [
file
] [
log
] [
blame
]
package disruptor
func (this *Cursor) Store(value int64) {
this.value = value
}
func (this *Cursor) Load() int64 {
return this.value
}