Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
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?

share|improve this question
You could make that function much shorter/cleaner by using pattern matching for getting the head/tail of the 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

2 Answers

up vote 1 down vote accepted

To answer your second question,

why it has two '? ''? what is the difference between 'a list list and ''a list list?

''a is the same as 'a, but requires it to be an equality type. An equality type in SML is a type that can be compared using =. Non-equality types cannot be compared using =. When you create a datatype, you can specify whether it is an equality type or not.

share|improve this answer
Thank you for replying. Then is it possible to change the type '''a' to ''a' with my code? Also I don't want to have the warning sign there. Do you have any hint or suggestion for that? – Q123 Sep 18 '12 at 3:01

Excerpted from ML Hints:

Warning: calling polyEqual [may occur] whenever you use = to compare two values with polymorphic type.

For example, fun eq(x,y) = (x = y); will cause this warning to be generated, because x and y will have polymorphic type ''a. This is perfectly fine and you may ignore the warning. It is not reporting any kind of semantic error or type error in your code. The compiler reports the warning because there can be a slight ineffeciency in how ML tests whether two values of a polymorphic type are equal. In particular, to perform the equality test, the run-time system must first determine what types of values you are currently using and then determine whether the values are equal. The first part (checking the run-time types) can make the = test slightly slower than if the types are known ahead of time (such as when we test 3 = 4 and know that the = test is being applied to integers). However, that is not something most users of ML ever need to worry about...

share|improve this answer
- please do not create tag wikis that simply have a hyperlink; these entries are not helpful, and will be rejected as such. See: stackoverflow.com/review-beta/suggested-edits/665815#./… – LittleBobbyTables Sep 18 '12 at 15:44
@LittleBobbyTables Understood, thanks. – j.w.r Sep 18 '12 at 15:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.