cedric
05/26/2017, 3:00 PM!!
mingkangpan
05/26/2017, 3:06 PMcedric
05/26/2017, 3:07 PMfilter
doesn't enable smartcasting, I'd loop manually and test each for null
myself, probably with ?.let
. This way, you get rid of !!
cedric
05/26/2017, 3:09 PMwidget.advertImageList?.forEach { w ->
w.referenceImageUrl?.let { url ->
pictureItems.add(PictureSliderAdapter.PictureItemViewModel(url, w.description ?: ""))
}
}
mingkangpan
05/26/2017, 3:17 PMbeholder
05/27/2017, 9:55 AMfilterNotNull
method