Bruno Garcia
09/16/2019, 6:45 PMval a = Some() { b = "value" }
Or do I need multiple lines for thatstreetsofboston
09/16/2019, 6:46 PMval a = Some(b = "value")?Shawn
09/16/2019, 6:46 PMval a = Some().apply { b = "value" }Bruno Garcia
09/16/2019, 6:47 PMBruno Garcia
09/16/2019, 6:47 PMShawn
09/16/2019, 6:49 PMShawn
09/16/2019, 6:49 PMBruno Garcia
09/16/2019, 7:19 PMBruno Garcia
09/16/2019, 7:19 PMMike
09/17/2019, 3:33 PMSome is Java, then apply is the way to go.