any hints on working in parallel on iterables ? ko...
# announcements
s
any hints on working in parallel on iterables ? kotlin doesn't support this just yet ?
v
Like what? Parallel
map
of a list? I don't think this will ever be in the stdlib. Use dedicated libraries like JDK8 streams
s
yeah like working in parallel on map
hmm ok
thx
v
In case you were wondering,
aList.stream()
converts an iterable to a stream