ฉันมีรหัส (แปลก ๆ ที่ยอมรับ) ซึ่งใช้เลนส์และGHC บันทึก :
{-# LANGUAGE DataKinds, PolyKinds, FlexibleInstances, UndecidableInstances #-}
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE TypeApplications #-}
{-# LANGUAGE TypeFamilies #-}
module Main where
import Control.Lens
import GHC.Records
data Glass r = Glass -- just a dumb proxy
class Glassy r where
the :: Glass r
instance Glassy x where
the = Glass
instance (HasField k r v, x ~ r)
-- instance (HasField k r v, Glass x ~ Glass r)
=> HasField k (Glass x) (ReifiedGetter r v) where
getField _ = Getter (to (getField @k))
data Person = Person { name :: String, age :: Int }
main :: IO ()
main = do
putStrLn $ Person "foo" 0 ^. runGetter (getField @"name" the)
ความคิดคือมีHasField
ตัวอย่างที่เสกReifiedGetter
ออกมาจากพร็อกซี่เพียงเพื่อนรก แต่มันไม่ทำงาน:
* Ambiguous type variable `r0' arising from a use of `getField'
prevents the constraint `(HasField
"name"
(Glass r0)
(ReifiedGetter Person [Char]))' from being solved.
ฉันไม่เข้าใจว่าทำไมจึงr0
ยังคลุมเครือ ฉันใช้เคล็ดลับข้อ จำกัดและสัญชาตญาณของฉันคือหัวอินสแตนซ์ควรตรงกันจากนั้นตัวตรวจสอบชนิดจะพบr0 ~ Person
ในปัจจัยพื้นฐานและนั่นจะลบความคลุมเครือ
หากฉันเปลี่ยน(HasField k r v, x ~ r)
เป็น (HasField k r v, Glass x ~ Glass r)
สิ่งที่ลบความคลุมเครือและรวบรวมได้ดี แต่ทำไมมันถึงได้ผลและทำไมมันถึงไม่ทำงานอย่างนั้น?