0
Conduitに次のコードを実装するにはどうすればよいですか?ConduitMのマッピング?
は、その入力タイプa
であり、出力タイプb
であり、出力新しいc
のタイプを返し導管、すなわちなくb
導管を考えます。ドキュメントを見ると
g :: Monad m => ConduitM a b m() -> (b -> c) -> ConduitM a c m()
Conduitに次のコードを実装するにはどうすればよいですか?ConduitMのマッピング?
は、その入力タイプa
であり、出力タイプb
であり、出力新しいc
のタイプを返し導管、すなわちなくb
導管を考えます。ドキュメントを見ると
g :: Monad m => ConduitM a b m() -> (b -> c) -> ConduitM a c m()
、これは右、ちょうどmapOutput
のですか?
https://www.stackage.org/haddock/lts-8.13/conduit-1.2.10/Data-Conduit.html#t:mapOutput
おかげで - 私は最初のドキュメントを読んでなければなりません! –