# Functions
LoadFloat64 atomically loads tha float64 value from the provided address.
StoreFloat64 atomically stores a float64 value into the provided address.
# Constants
DeadlockEnabled is true if the deadlock detector is enabled.
# Structs
AtomicString gives you atomic-style APIs for string.
IntMap is a concurrent map with amortized-constant-time loads, stores, and deletes.
A Mutex is a mutual exclusion lock.
An RWMutex is a reader/writer mutual exclusion lock.
# Type aliases
AtomicBool mimics an atomic boolean.
AtomicFloat64 mimics the atomic types in the sync/atomic standard library, but for the float64 type.