<div dir="ltr">How can i know when casting of types maked by compiler and when programmer must to do it?<br><br>
<div class="gmail_quote">On Tue, Apr 5, 2011 at 12:14 PM, Daniel Fischer <span dir="ltr">&lt;<a href="mailto:daniel.is.fischer@googlemail.com">daniel.is.fischer@googlemail.com</a>&gt;</span> wrote:<br>
<blockquote style="BORDER-LEFT: #ccc 1px solid; MARGIN: 0px 0px 0px 0.8ex; PADDING-LEFT: 1ex" class="gmail_quote">
<div class="im">On Tuesday 05 April 2011 10:38:37, Nadav Chernin wrote:<br>&gt; Why only  &quot;length as&quot; we must to cast? Why &quot;sum as&quot;, that have type<br>&gt; Integer can be used in (/).<br>&gt;<br>&gt; :t (/)<br>
&gt;<br>&gt; (/) :: (Fractional a) =&gt; a -&gt; a -&gt; a<br><br></div>No, sum as has the type of as&#39;s elements,<br><br>sum :: Num a =&gt; [a] -&gt; a<br><br>So the use of (/) refines the constraint from (Num a) to (Fractional a).<br>
if you want it to work on Integers too,<br>you&#39;d get<br><br>mean :: (Real a, Fractional b) =&gt; [a] -&gt; b<br>mean xs = realToFrac (sum xs) / (fromIntegral $ length xs)<br></blockquote></div><br></div>