<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">On Tue, May 5, 2015 at 11:38 AM, Shishir Srivastava <span dir="ltr"><<a href="mailto:shishir.srivastava@gmail.com" target="_blank">shishir.srivastava@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div>I was going to follow up my question with the possible practical use of why and where someone would use such a construct to wrap a function inside a new data-type. </div><div><br></div><div>For all that matters I could have used 'length' function directly to get the same output. </div><div></div></blockquote></div><br>Because you want a different function for each value, typically. Continuing with the DynamicLog example, I have two different uses of DynamicLog in my xmonad config; one feeds an EWMH panel from the logHook, so it sets</div><div class="gmail_extra"><br></div><div class="gmail_extra">    defaultPP { {- ... -}, ppOutput = dbusOutput ch }</div><div class="gmail_extra"><br></div><div class="gmail_extra">where ch was previously associated with a dbus endpoint. This is executed whenever the focused window changes or the current workspace changes.<br><br>The second is in a keybinding I use for debugging and outputs to the session log (~/.xsession-errors):</div><div class="gmail_extra"><br></div><div class="gmail_extra">    defaultPP { {- ... -}, ppOutput = hPutStrLn stderr }<br clear="all"><div><br></div><div>(The ellipsis comments customize the value in other ways not important here.)</div><div><br></div><div>You might think of this use of record syntax as being the Haskell version of "named parameters" (as distinct from positional parameters) present in some other languages.</div><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr"><div>brandon s allbery kf8nh                               sine nomine associates</div><div><a href="mailto:allbery.b@gmail.com" target="_blank">allbery.b@gmail.com</a>                                  <a href="mailto:ballbery@sinenomine.net" target="_blank">ballbery@sinenomine.net</a></div><div>unix, openafs, kerberos, infrastructure, xmonad        <a href="http://sinenomine.net" target="_blank">http://sinenomine.net</a></div></div></div>
</div></div>