使用 Idris 进行测试驱动开发的第 9 章介绍了以下数据类型和removeElem
功能。
import Data.Vect
data MyElem : a -> Vect k a -> Type where
MyHere : MyElem x (x :: xs)
MyThere : (later : MyElem x xs) -> MyElem x (y :: xs)
-- I slightly modified the definition of this function from the text.
removeElem : (value : a) -> (xs : Vect (S n) a) -> (prf : MyElem value xs) -> Vect n a
removeElem value (value :: ys) MyHere = ys
removeElem value (y :: ys) (MyThere later) = removeElem value (y :: ys) (MyThere later)
以下作品:
*lecture> removeElem 1 [1,2,3] MyHere
[2, 3] : Vect 2 Integer
但是,几分钟后以下调用仍在运行:
*lecture> removeElem 2 [1,2,3] (MyThere MyHere)
我猜为什么编译这么慢?