gpt4 book ai didi

haskell - 如何正确绑定(bind)此类型变量?

转载 作者:行者123 更新时间:2023-12-05 00:09:55 25 4
gpt4 key购买 nike

我一直在挖掘一些旧代码(坦率地说,对一些设计决定感到遗憾),但我意识到我永远无法编译最终函数,而且我真的不明白为什么。我有 ScopedTypeVariables,通常可以为我解决此类问题。

{-# LANGUAGE TemplateHaskell #-}
{-# LANGUAGE MultiParamTypeClasses, FlexibleInstances, UndecidableInstances, FlexibleContexts, RankNTypes #-}
{-# LANGUAGE DeriveTraversable, DerivingStrategies, ScopedTypeVariables #-}
{-# LANGUAGE FunctionalDependencies #-}
{-# LANGUAGE AllowAmbiguousTypes #-}

import Prelude hiding ((+), (*))
import Algebra
import Control.Lens.TH (makeLenses)
import Data.Semigroup (Semigroup, (<>))
import Data.Monoid (mempty, mappend)
import Data.Proxy (Proxy)
import Data.Function(on)
import qualified Data.IntMap as IM
import Control.Lens (IxValue, Index, Ixed(..), Traversal', Iso', view, review)

class (Ixed g) => Grid g where
-- Stored x first, then y
gridIso :: Iso' g (IM.IntMap (IM.IntMap (IxValue g)))
storageVector :: (Index g) -> Vector2D Int

{-# INLINE gridIx #-}
gridIx :: forall g . (Grid g) => (Index g) -> Traversal' g (IxValue g)
gridIx v = gridIso . (ix x) . (ix y)
where (Vector2D x y) = storageVector v

相反,我得到了这个:

/mnt/c/Users/me/advent2018/src/Vector.hs:92:41: error:
• Couldn't match expected type ‘Index g0’
with actual type ‘Index g’
NB: ‘Index’ is a non-injective type family
The type variable ‘g0’ is ambiguous
• In the first argument of ‘storageVector’, namely ‘v’
In the expression: storageVector v
In a pattern binding: (Vector2D x y) = storageVector v
• Relevant bindings include
v :: Index g
(bound at /mnt/c/Users/me/advent2018/src/Vector.hs:91:8)
gridIx :: Index g -> Traversal' g (IxValue g)
(bound at /mnt/c/Users/me/advent2018/src/Vector.hs:91:1)

最佳答案

这里发生的事情是,为了调用 storageVector,编译器必须选择 Grid 的实例,但它不能。

通常一个参数类型就足以选择实例,但在这种情况下参数的类型是 Index g,而 Index 是一个非内射类型族(如错误消息所述),这意味着您可以从 g 转到 Index g,但不能返回。换句话说,仅仅知道 Index g 是无法弄清楚 g 是什么的。

因此编译器无法选择 Grid 实例并拒绝该程序。

为了帮助编译器解决这个问题,您可以显式指定应该用于实例查找的类型。为此,请使用 TypeApplications 扩展:

    where (Vector2D x y) = storageVector @g v

这将告诉编译器它应该为相同的 g 使用实例 Grid g

请注意,要使其正常工作,使用 forall 关键字声明 g 至关重要,您已经在这样做了。

关于haskell - 如何正确绑定(bind)此类型变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59416331/

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