---
title: sequentiallyConsistent
framework: synchronization
role: symbol
role_heading: Type Property
path: synchronization/atomicloadordering/sequentiallyconsistent
---

# 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

```swift
static var sequentiallyConsistent: AtomicLoadOrdering { get }
```

## Discussion

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