<?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: Recursion in PowerShell &#8230; slow</title>
	<atom:link href="http://huddledmasses.org/recursion-in-powershell-slow/feed/" rel="self" type="application/rss+xml" />
	<link>http://huddledmasses.org/recursion-in-powershell-slow/</link>
	<description>You can do more than breathe for free...</description>
	<lastBuildDate>Fri, 27 Apr 2012 12:40:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Joel 'Jaykul' Bennett</title>
		<link>http://huddledmasses.org/recursion-in-powershell-slow/comment-page-1/#comment-141726</link>
		<dc:creator>Joel 'Jaykul' Bennett</dc:creator>
		<pubDate>Sat, 09 Feb 2008 05:07:28 +0000</pubDate>
		<guid isPermaLink="false">http://HuddledMasses.org/recursion-in-powershell-slow/#comment-141726</guid>
		<description>Yes, yes ... functions and filters are the same thing ... that wasn&#039;t my point.  My point was that the filter was being recursed via a pipeline.  

In fact, if I understand things correctly ... the filter method should have pretty much the same overhead as the function, plus the overhead of running that mini pipeline?</description>
		<content:encoded><![CDATA[<p>Yes, yes &#8230; functions and filters are the same thing &#8230; that wasn&#8217;t my point.  My point was that the filter was being recursed via a pipeline.  </p>
<p>In fact, if I understand things correctly &#8230; the filter method should have pretty much the same overhead as the function, plus the overhead of running that mini pipeline?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oisin</title>
		<link>http://huddledmasses.org/recursion-in-powershell-slow/comment-page-1/#comment-141487</link>
		<dc:creator>Oisin</dc:creator>
		<pubDate>Thu, 07 Feb 2008 16:43:42 +0000</pubDate>
		<guid isPermaLink="false">http://HuddledMasses.org/recursion-in-powershell-slow/#comment-141487</guid>
		<description>Is the delay explained as simply as:

function - filter = parameter binding

?</description>
		<content:encoded><![CDATA[<p>Is the delay explained as simply as:</p>
<p>function &#8211; filter = parameter binding</p>
<p>?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Per Østergaard</title>
		<link>http://huddledmasses.org/recursion-in-powershell-slow/comment-page-1/#comment-141026</link>
		<dc:creator>Per Østergaard</dc:creator>
		<pubDate>Mon, 04 Feb 2008 17:51:29 +0000</pubDate>
		<guid isPermaLink="false">http://HuddledMasses.org/recursion-in-powershell-slow/#comment-141026</guid>
		<description>Hi

Both the function and the filter is called recursively - you are just passing the input in two different ways - argument or pipeline. In fact, function and filter are just syntactical sugar for the same. These two definitions are the same:
function test1{ process { $_ } }
filter test2{ $_ }
Try to do a type function:test2 and see the output.

Best regards
Per
www.msgoodies.com</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>Both the function and the filter is called recursively &#8211; you are just passing the input in two different ways &#8211; argument or pipeline. In fact, function and filter are just syntactical sugar for the same. These two definitions are the same:<br />
function test1{ process { $_ } }<br />
filter test2{ $_ }<br />
Try to do a type function:test2 and see the output.</p>
<p>Best regards<br />
Per<br />
<a href="http://www.msgoodies.com" rel="nofollow">http://www.msgoodies.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeffrey Snover</title>
		<link>http://huddledmasses.org/recursion-in-powershell-slow/comment-page-1/#comment-141017</link>
		<dc:creator>Jeffrey Snover</dc:creator>
		<pubDate>Mon, 04 Feb 2008 13:17:14 +0000</pubDate>
		<guid isPermaLink="false">http://HuddledMasses.org/recursion-in-powershell-slow/#comment-141017</guid>
		<description>We did very little work on performance in V1.  In particular, function overhead is very heavy in V1 but we are working on improving this in V2.</description>
		<content:encoded><![CDATA[<p>We did very little work on performance in V1.  In particular, function overhead is very heavy in V1 but we are working on improving this in V2.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

