This is a valid Kotlin as of now: ``` val imageVie...
# language-proposals
e
This is a valid Kotlin as of now:
Copy code
val imageView = imageURLString
    ?.let { URL(sring = it) }
    ?.let { NSData(contentsOf = it) }
    ?.let { UIImage(data = it as Data) }
    ?.let { UIImageView(image = it) }
are you suggesting to introduce |> as a shortcut for
?.let
?