package stdlib
import (
"reflect"
"sync/atomic"
)
func init() {
Symbols ["sync/atomic/atomic" ] = map [string ]reflect .Value {
"AddInt32" : reflect .ValueOf (atomic .AddInt32 ),
"AddInt64" : reflect .ValueOf (atomic .AddInt64 ),
"AddUint32" : reflect .ValueOf (atomic .AddUint32 ),
"AddUint64" : reflect .ValueOf (atomic .AddUint64 ),
"AddUintptr" : reflect .ValueOf (atomic .AddUintptr ),
"CompareAndSwapInt32" : reflect .ValueOf (atomic .CompareAndSwapInt32 ),
"CompareAndSwapInt64" : reflect .ValueOf (atomic .CompareAndSwapInt64 ),
"CompareAndSwapPointer" : reflect .ValueOf (atomic .CompareAndSwapPointer ),
"CompareAndSwapUint32" : reflect .ValueOf (atomic .CompareAndSwapUint32 ),
"CompareAndSwapUint64" : reflect .ValueOf (atomic .CompareAndSwapUint64 ),
"CompareAndSwapUintptr" : reflect .ValueOf (atomic .CompareAndSwapUintptr ),
"LoadInt32" : reflect .ValueOf (atomic .LoadInt32 ),
"LoadInt64" : reflect .ValueOf (atomic .LoadInt64 ),
"LoadPointer" : reflect .ValueOf (atomic .LoadPointer ),
"LoadUint32" : reflect .ValueOf (atomic .LoadUint32 ),
"LoadUint64" : reflect .ValueOf (atomic .LoadUint64 ),
"LoadUintptr" : reflect .ValueOf (atomic .LoadUintptr ),
"StoreInt32" : reflect .ValueOf (atomic .StoreInt32 ),
"StoreInt64" : reflect .ValueOf (atomic .StoreInt64 ),
"StorePointer" : reflect .ValueOf (atomic .StorePointer ),
"StoreUint32" : reflect .ValueOf (atomic .StoreUint32 ),
"StoreUint64" : reflect .ValueOf (atomic .StoreUint64 ),
"StoreUintptr" : reflect .ValueOf (atomic .StoreUintptr ),
"SwapInt32" : reflect .ValueOf (atomic .SwapInt32 ),
"SwapInt64" : reflect .ValueOf (atomic .SwapInt64 ),
"SwapPointer" : reflect .ValueOf (atomic .SwapPointer ),
"SwapUint32" : reflect .ValueOf (atomic .SwapUint32 ),
"SwapUint64" : reflect .ValueOf (atomic .SwapUint64 ),
"SwapUintptr" : reflect .ValueOf (atomic .SwapUintptr ),
"Bool" : reflect .ValueOf ((*atomic .Bool )(nil )),
"Int32" : reflect .ValueOf ((*atomic .Int32 )(nil )),
"Int64" : reflect .ValueOf ((*atomic .Int64 )(nil )),
"Uint32" : reflect .ValueOf ((*atomic .Uint32 )(nil )),
"Uint64" : reflect .ValueOf ((*atomic .Uint64 )(nil )),
"Uintptr" : reflect .ValueOf ((*atomic .Uintptr )(nil )),
"Value" : reflect .ValueOf ((*atomic .Value )(nil )),
}
}
The pages are generated with Golds v0.8.4 . (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu .
PR and bug reports are welcome and can be submitted to the issue list .
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds .