我可以像这样定义一个多类自然变换:
type family (~>) :: k -> k -> *
type instance (~>) = (->)
newtype NT a b = NT { apply :: forall x. a x ~> b x }
type instance (~>) = NT
它适用于所有类型,所以我可以定义例如
left :: Either ~> (,)
left = NT (NT (Left . fst))
这很酷,也很鼓舞人心。但是无论我玩了多少技巧,我似乎都无法在返回类型中得到一些可变参数。例如我想要
type family (:*:) :: k -> k -> k
type instance (:*:) = (,)
type instance (:*:) = ???
这似乎是不可能的,因为类型族需要完全饱和,并且只能在*
.
我什至尝试了一些相当讨厌的技巧
type instance (:*:) = Promote2 (:*:)
type family Promote2 :: (j -> k -> l) -> (a -> j) -> (a -> k) -> (a -> l) where
promote2_law :: Promote2 f x y z :~: f (x z) (y z)
promote2_law = unsafeCoerce Refl
fstP :: forall (a :: k -> *) (b :: k -> *) (c :: k). (a :*: b) c -> a c
fstP = case promote2_law @(:~:) @a @b @c of Refl -> NT (\(a,b) -> a)
而且我不知道这是否有任何希望,因为我还没有考虑过如何“代表”更高级的事物。但是 GHC 知道我在说谎
• Couldn't match type ‘(,)’ with ‘Promote2 (,) a’
Inaccessible code in
a pattern with constructor: Refl :: forall k (a :: k). a :~: a,
有没有其他技巧呢?