thara
06/06/2019, 2:09 PMIterable<Tuple>#unzip
?
I found an issue about `Iterable<Pair>#unzip`; https://youtrack.jetbrains.com/issue/KT-5793
I wonder it doesn’t say about Iterable<Tuple>
.ilya.gorbunov
06/07/2019, 6:48 PMTuple
in the standard library.thara
06/08/2019, 4:39 PMTriple
is correct.ilya.gorbunov
06/10/2019, 3:00 PMzip
operation that produces List<Triple<...>>
, so that's why the inverse operation unzip
for triples is missing.thara
06/11/2019, 3:44 PMList<Triple<...>>#zip
because I believe useful for us.
(FYI, Scala has zipped
function)
May I make PR to https://github.com/JetBrains/kotlin?
or Should I make an issue to YouTrack?ilya.gorbunov
06/11/2019, 3:56 PM