1
正如標題所述。扁平化未來[EitherT [未來,A,B]]
使用EitherT[Future, A, B]
完成了許多操作。有時我想要通過另一個簽名爲A => Future[C]
的操作向左或向右映射。其他情況是EitherT[Future, A, B]
對未來產生的Future[EitherT[Future, A, B]]
的映射結果。
我怎樣才能優雅地變平類型,如:
EitherT[Future, Future[A], Future[B]]
和Future[EitherT[Future, A, B]]
預先感謝您。