``` someList.map { it?.let @it { it.property...
# announcements
r
Copy code
someList.map {
  it?.let @it {
    it.property?.let {
      if (someFun(it)) {
         return@it it
      }
    }
  }
}
👍 1