to get from a List<Either<E,V>> to Lis...
# arrow
d
to get from a List<Either<E,V>> to List<V> is there a more sensible solution than
Copy code
list.flatMap {it.toOption().toList()}
?