// Copyright 2018 gf Author(https://github.com/gogf/gf). All Rights Reserved. // // This Source Code Form is subject to the terms of the MIT License. // If a copy of the MIT was not distributed with this file, // You can obtain one at https://github.com/gogf/gf. package gtype import ( "sync/atomic" ) type Byte struct { value int32 } // NewByte returns a concurrent-safe object for byte type, // with given initial value . func NewByte(value ...byte) *Byte { if len(value) > 0 { return &Byte{ value: int32(value[0]), } } return &Byte{} } // Clone clones and returns a new concurrent-safe object for byte type. func (v *Byte) Clone() *Byte { return NewByte(v.Val()) } // Set atomically stores into t.value and returns the previous value of t.value. func (v *Byte) Set(value byte) (old byte) { return byte(atomic.SwapInt32(&v.value, int32(value))) } // Val atomically loads t.value. func (v *Byte) Val() byte { return byte(atomic.LoadInt32(&v.value)) } // Add atomically adds to t.value and returns the new value. func (v *Byte) Add(delta byte) (new byte) { return byte(atomic.AddInt32(&v.value, int32(delta))) } // Cas executes the compare-and-swap operation for value. func (v *Byte) Cas(old, new byte) bool { return atomic.CompareAndSwapInt32(&v.value, int32(old), int32(new)) }