How does one convert a `List` to an `arrow.fx` `St...
# arrow
j
How does one convert a
List
to an
arrow.fx
Stream
using the
0.11-snapshot
? IDE completion doesn't appear to offer an appropriate extension that might do this.
Ah, this works
Stream(*values.toTypedArray())
. Is there a better way?
Ah... better:
Stream.iterable(values)
.
👍 2