本文介绍了concatMap是做什么的?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

concatMap 是做什么的?
我知道什么 concat map do。它是只是他们两个放在一起,或者它是一个完全不同的功能?

What does concatMap do?I know what concat and map do. Is it just both of them put together or is it a completely different function?

推荐答案

在概念上是的,但是不同的:

Conceptually yes, but the actual implementation is different:

concatMap               :: (a -> [b]) -> [a] -> [b]
concatMap f             =  foldr ((++) . f) []

这篇关于concatMap是做什么的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-04 11:02