Meme detail
About this meme
Text detected in the image
Igal Tabachnik @hmemcpy·2h Finally a real reason to upgrade to Scala 3 for Kit Langton @kitlangton· 2h Wha!? For comprehension improvements are coming!!! 1. Starting for comprehensions with aliases: Current Syntax: val a = 1 5 for { b <- Some(2) c <− doSth(a) } yield b + c New Syntax: for { a = 1 b <- Some(2) c <− doSth(a) } yield b + c