fmap 的标准序曲名称。常数

Standard prelude name for fmap . const

组合 fmap . const 是一个函数,它接受一些常量和一组元素以及 returns 一组元素,其中 set 中的所有元素都被常量替换。

例如,(fmap . const) 5 [1,2,7] returns [5,5,5]

是否有任何标准的前奏功能可以做到这一点?

谢谢!

您正在寻找 (<$) :: Functor f => a -> f b -> f a.