gpt4 book ai didi

haskell - where block 的语法

转载 作者:行者123 更新时间:2023-12-02 05:57:33 25 4
gpt4 key购买 nike

我正在阅读 Graham Hutton 的《Haskell 编程》,它在第 13 章中给出了以下代码:

import Control.Applicative
import Data.Char

{- some code omitted -}

newtype Parser a = P (String -> [(a, String)])

item :: Parser Char
item = P (\ input -> case input of
[] -> []
x:xs -> [(x,xs)])

three :: Parser (Char,Char)
three = pure g <*> item <*> item <*> item
where g a b c = (a,c)

我很难理解最后一行

where g a b c = (a,c)

我知道这条线存在是因为 three 的类型是 Parser(Char, Char) 但是 g a b c 代表什么? g a b c 在语法上如何有效?我习惯于在类似情况下看到哪里

f :: s -> (a,s)
f x = y
where y = ... x ...

其中每个符号 x 和 y 出现在 where 声明之前。

最佳答案

这是声明函数的语法。它相当于

 where g = \a b c -> (a,c)

g 是一个接受 3 个参数并返回一个元组的函数

关于haskell - where block 的语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45125904/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com