marstran
(A.firstOrNull() ?: B.first()).field
val first = A.firstOrNull() ?: B.first() val field = first.field
adam-mcneilly