好书网为大家整理了经典好书《Haskell趣学指南》中的经典语录,精彩段落及优美句子,重读经典,感悟人生。让读者沉浸在自己的阅读世界里,忘记周围的世界, 与作者一起在另外一个世界里快乐、悲伤、愤怒、平和,欢迎大家阅读~
_ means that we don't care what we'll draw from the list anyway so instead of writing a variable name that we'll never use, we just write _.
我们看到如何在函子值上映射“多参数”函数得到函数值的函子值。我们能对它做什么吗?对于一个参数,我们可以映射一个函数,它接受某个函数为参数,给这个函数应用一个参数。因为函子值里的任何东西都会被作为参数传递给我们的函数。
Function application has the highest precedence of all the operations in Haskell. In other words, these two statements are equivalent.