誰か説明してもらえますか、この警告はどういう意味ですか?
stdIn:18.35 Warning: calling polyEqual
また、次のステートメントに「a」が含まれているのはなぜですか。
val alreadyVisited = fn : ''a * ''a list -> bool
これは私の機能です:
fun alreadyVisited(v, []) = false
| alreadyVisited(v, x::xs) = if(x=v) then true
else alreadyVisited(v, xs);