<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	
	>
<channel>
	<title>
	Comments on: How to Pass a Polymorphic Object to an STL Algorithm	</title>
	<atom:link href="https://www.fluentcpp.com/2018/04/17/pass-polymorphic-object-stl-algorithm/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.fluentcpp.com/2018/04/17/pass-polymorphic-object-stl-algorithm/</link>
	<description>Jonathan Boccara&#039;s blog</description>
	<lastBuildDate>Sun, 06 May 2018 21:11:00 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.5.3</generator>
	<item>
		<title>
		By: zori		</title>
		<link>https://www.fluentcpp.com/2018/04/17/pass-polymorphic-object-stl-algorithm/#comment-973</link>

		<dc:creator><![CDATA[zori]]></dc:creator>
		<pubDate>Sun, 06 May 2018 21:11:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=3196#comment-973</guid>

					<description><![CDATA[Another working solution for this issue is to specify template arguments:
std::transform(begin(v), end(v), begin(v), base);

Now we enforce that &#039;base&#039; object should be passed by reference, require more typing but works.]]></description>
			<content:encoded><![CDATA[<p>Another working solution for this issue is to specify template arguments:<br />
std::transform(begin(v), end(v), begin(v), base);</p>
<p>Now we enforce that &#8216;base&#8217; object should be passed by reference, require more typing but works.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Boki		</title>
		<link>https://www.fluentcpp.com/2018/04/17/pass-polymorphic-object-stl-algorithm/#comment-931</link>

		<dc:creator><![CDATA[Boki]]></dc:creator>
		<pubDate>Wed, 18 Apr 2018 22:04:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=3196#comment-931</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.fluentcpp.com/2018/04/17/pass-polymorphic-object-stl-algorithm/#comment-930&quot;&gt;Piotr Nycz&lt;/a&gt;.

Good one.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.fluentcpp.com/2018/04/17/pass-polymorphic-object-stl-algorithm/#comment-930">Piotr Nycz</a>.</p>
<p>Good one.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Piotr Nycz		</title>
		<link>https://www.fluentcpp.com/2018/04/17/pass-polymorphic-object-stl-algorithm/#comment-930</link>

		<dc:creator><![CDATA[Piotr Nycz]]></dc:creator>
		<pubDate>Tue, 17 Apr 2018 22:00:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=3196#comment-930</guid>

					<description><![CDATA[You know you might make operator() a virtual function? No need for adding method()...]]></description>
			<content:encoded><![CDATA[<p>You know you might make operator() a virtual function? No need for adding method()&#8230;</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
