Loránd
03/06/2018, 8:06 AMif ( foo?.first?.second?.third?.fourth?.fifth != null ) {
}
in this case i will have to type that out if i want to use it in the block, of course i can create a property outside to store it but i just think this is much nicer.
if ( val foo1 = foo?.first?.second?.third?.fourth?.fifth ){
}