Contents

sequentiallyConsistent

A sequentially consistent load performs an acquiring load and also guarantees that it and all other sequentially consistent atomic operations (loads, stores, updates) appear to be executed in a single, total sequential ordering.

Declaration

static var sequentiallyConsistent: AtomicLoadOrdering { get }

Discussion

This value corresponds to std::memory_order_seq_cst in C++.