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
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