fun a(list) =
let
val num = length(hd(list))
fun inner(list) =
if num = length(hd(list)) then
if tl(list) = nil then true
else inner(tl(list))
else false
in
if length(hd(list))-1 = length(tl(list)) then inner(tl(list))
else false
end;
this is ml code and I got this warning and type.
stdIn:6.16 Warning: calling polyEqual
val a = fn : ''a list list -> bool
I don't understand about the warning. why it appear and the type. ''a why it has two '? ''? what is the difference between 'a list list and ''a list list?
fun a (x::xs as list) = .... (Note, you need a case for the empty list, too. Your current function wouldn't work on empty lists, either, but the compiler cannot discover that if you don't use pattern matching.) – Sebastian Paaske Tørholm Sep 16 '12 at 8:06