Skip to main content
Version: 2025.0

Unwrapping & Chaining

Drift permits members chaining.

class A(value: Int)

let instance = A()
print(instance.value) // Here, instance.value is a chain to access
// value from the instance object