Slackbot
09/14/2023, 11:36 AMVampire
09/14/2023, 11:42 AMval foo1 = objects.property<String>()
val foo2 = objects.property<String>()
val foo3 = objects.property<String>()
val foo4 = objects.property<String>()
val bar = objects.mapProperty<String, String>()
bar.put("foo1", foo1)
bar.put("foo2", foo2)
bar.put("foo3", foo3)
bar.put("foo4", foo4)
?Vampire
09/14/2023, 11:43 AMBrais Gabín Moreira
09/14/2023, 11:45 AMVampire
09/14/2023, 11:46 AMzip(...).Brais Gabín Moreira
09/14/2023, 11:50 AMzip and see which is easier to read. Thanks you 🙂Vampire
09/14/2023, 11:51 AMzip here, especially as you can only zip two providers. So you would zip foo1 with foo2, then zip the result with foo3, and then zip the result with foo4Brais Gabín Moreira
09/14/2023, 11:52 AMzip doesn't work well for my use case. Again thank you for all the help :)