<@U3T6LDWTD> commented on <@U0HUVB4AW>’s file <htt...
# language-proposals
u
@benleggiero commented on @aerb’s file https://kotlinlang.slack.com/files/U0HUVB4AW/F5JUEEBDX/example.kt: Something I love from Swift is that you can mix nil-binding and binary operations:
Copy code
// Swift code
if let foo = nullableFoo,
    foo.isBar,
    let bar = foo.bar,
    bar.isBaz
    && !bar.isQux {
}