Purescript - 无法统一类型​​

时间:2015-05-04 13:29:48

标签: purescript unify

我是Purescript(以及Haskell)的新手,我遇到了一个无法统一的错误。 最初我有:

newtype Domain = Domain String

newtype Keyword = Keyword String

type Result = {
        domain    :: Domain,
        occurred   :: Boolean,
        position  :: Number,
        quality   :: Number
    }

is_min_pos :: Maybe Result -> Maybe Result -> Maybe Result
is_min_pos Nothing Nothing = Nothing
is_min_pos Nothing y = y
is_min_pos x Nothing = x
is_min_pos x y = if y.position < x.position then y else x     

这给了我错误

Cannot unify type
  Prim.Object
with type
  Data.Maybe.Maybe

我认为这是因为期待x和y属于Maybe Record类型。所以要明确我将代码改为,按类型进行模式匹配。

data Result = Result {
        domain    :: Domain,
        occurred   :: Boolean,
        position  :: Number,
        quality   :: Number
    }

is_min_pos (Result x) (Result y) = if y.position < x.position then y else x

现在我收到了错误

Cannot unify type
  Data.Maybe.Maybe Processor.Result
with type
  Processor.Result

这是指本节

y.position < x.position -- in the first case

在第二种情况下

Result x -- on the pattern matching side

我正在进一步研究

type Results = List Result

get_item_with_min_position :: Results -> Maybe Result
--get_item_with_min_position [] = Nothing
get_item_with_min_position results = foldl is_min_pos Nothing results

我正在使用&#39; foldl&#39;来自可折叠。我不知道如何模式匹配一​​个空列表。如果可以,我会将类型签名更改为

is_min_pos :: Maybe Result -> Result -> Maybe Result

我现在收到错误

Cannot unify type
    Prim.Object
with type
    Data.Maybe.Maybe

这是可以理解的,因为在

foldl is_min_pos Nothing results

结果是List Result的类型 is_min_pos期望可能结果

解决这个问题的干净方法是什么?

1 个答案:

答案 0 :(得分:5)

Maybe类型有两个数据构造函数:Nothing,您正确匹配,Just。如果要匹配 包含值的Maybe a类型的内容,则应匹配Just构造函数。

您需要按如下方式修改最终案例:

is_min_pos (Just x) (Just y) = if y.position < x.position 
                                  then Just y 
                                  else Just x

此处Just x的类型为Maybe Result,根据类型签名是正确的,因此x的类型为Result,因此您可以使用.position 1}}访问器来读取其position属性。