<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: F#: Expressing intent and the forward/application operators</title>
	<atom:link href="http://www.markhneedham.com/blog/2010/01/04/f-expressing-intent-and-the-forwardapplication-operators/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.markhneedham.com/blog/2010/01/04/f-expressing-intent-and-the-forwardapplication-operators/</link>
	<description>Thoughts on Software Development</description>
	<lastBuildDate>Wed, 08 Sep 2010 21:07:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Rick Minerich's Development Wonderland : F# Discoveries This Week 1/05/2010</title>
		<link>http://www.markhneedham.com/blog/2010/01/04/f-expressing-intent-and-the-forwardapplication-operators/comment-page-1/#comment-29833</link>
		<dc:creator>Rick Minerich's Development Wonderland : F# Discoveries This Week 1/05/2010</dc:creator>
		<pubDate>Tue, 05 Jan 2010 21:10:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.markhneedham.com/blog/?p=1987#comment-29833</guid>
		<description>[...] Mark Needham discusses expressing intent with application operators [...]</description>
		<content:encoded><![CDATA[<p>[...] Mark Needham discusses expressing intent with application operators [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Needham</title>
		<link>http://www.markhneedham.com/blog/2010/01/04/f-expressing-intent-and-the-forwardapplication-operators/comment-page-1/#comment-29767</link>
		<dc:creator>Mark Needham</dc:creator>
		<pubDate>Mon, 04 Jan 2010 21:28:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.markhneedham.com/blog/?p=1987#comment-29767</guid>
		<description>Ah maybe wordpress screwed with it or something.

I&#039;m not sure how Planet F# works actually - I don&#039;t do anything to have my posts aggregated on there so I&#039;m not really sure why/why not they&#039;d appear.</description>
		<content:encoded><![CDATA[<p>Ah maybe wordpress screwed with it or something.</p>
<p>I'm not sure how Planet F# works actually &#8211; I don't do anything to have my posts aggregated on there so I'm not really sure why/why not they'd appear.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank de Groot</title>
		<link>http://www.markhneedham.com/blog/2010/01/04/f-expressing-intent-and-the-forwardapplication-operators/comment-page-1/#comment-29766</link>
		<dc:creator>Frank de Groot</dc:creator>
		<pubDate>Mon, 04 Jan 2010 21:09:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.markhneedham.com/blog/?p=1987#comment-29766</guid>
		<description>Err, yes that&#039;s what I meant. Must have fiddled with the editor too much, the code I posted doesn&#039;t make any sense.

BTW I saw your post on the Feedburner Planet F# list but now it&#039;s gone. Is that intended?</description>
		<content:encoded><![CDATA[<p>Err, yes that's what I meant. Must have fiddled with the editor too much, the code I posted doesn't make any sense.</p>
<p>BTW I saw your post on the Feedburner Planet F# list but now it's gone. Is that intended?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Needham</title>
		<link>http://www.markhneedham.com/blog/2010/01/04/f-expressing-intent-and-the-forwardapplication-operators/comment-page-1/#comment-29748</link>
		<dc:creator>Mark Needham</dc:creator>
		<pubDate>Mon, 04 Jan 2010 15:21:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.markhneedham.com/blog/?p=1987#comment-29748</guid>
		<description>Actually that&#039;s a good idea I think that&#039;d work quite well, didn&#039;t see that. 

So like you say we would end up with this:

let invalidDigits = Array.filter (fun x -&gt; x &lt; 0) digits

raise (ArgumentException (buildExceptionMessage invalidDigits))

Much better I think, thanks!</description>
		<content:encoded><![CDATA[<p>Actually that's a good idea I think that'd work quite well, didn't see that. </p>
<p>So like you say we would end up with this:</p>
<p>let invalidDigits = Array.filter (fun x -> x < 0) digits</p>
<p>raise (ArgumentException (buildExceptionMessage invalidDigits))</p>
<p>Much better I think, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank de Groot</title>
		<link>http://www.markhneedham.com/blog/2010/01/04/f-expressing-intent-and-the-forwardapplication-operators/comment-page-1/#comment-29747</link>
		<dc:creator>Frank de Groot</dc:creator>
		<pubDate>Mon, 04 Jan 2010 15:15:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.markhneedham.com/blog/?p=1987#comment-29747</guid>
		<description>I&#039;m not quite fluent in F# but I&#039;d say that using both  in the same line of code is confusing. And the last expression you suggested is a bit deep.
Perhaps it is better to split it up in multiple lines.
Maybe something like:
let invalidDigits = Array.filter (fun x -&gt; x  buildExceptionMessage)
Naming the Array.filter clarifies what it represents.
Or maybe my brain is just too small.</description>
		<content:encoded><![CDATA[<p>I'm not quite fluent in F# but I'd say that using both  in the same line of code is confusing. And the last expression you suggested is a bit deep.<br />
Perhaps it is better to split it up in multiple lines.<br />
Maybe something like:<br />
let invalidDigits = Array.filter (fun x -&gt; x  buildExceptionMessage)<br />
Naming the Array.filter clarifies what it represents.<br />
Or maybe my brain is just too small.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
