<?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 Use the STL With Legacy Output Collections	</title>
	<atom:link href="https://www.fluentcpp.com/2017/11/24/how-to-use-the-stl-in-legacy-code/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.fluentcpp.com/2017/11/24/how-to-use-the-stl-in-legacy-code/</link>
	<description>Jonathan Boccara&#039;s blog</description>
	<lastBuildDate>Sun, 10 Dec 2017 19:44:22 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.5.3</generator>
	<item>
		<title>
		By: Jonathan Boccara		</title>
		<link>https://www.fluentcpp.com/2017/11/24/how-to-use-the-stl-in-legacy-code/#comment-682</link>

		<dc:creator><![CDATA[Jonathan Boccara]]></dc:creator>
		<pubDate>Fri, 24 Nov 2017 15:22:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=1624#comment-682</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.fluentcpp.com/2017/11/24/how-to-use-the-stl-in-legacy-code/#comment-681&quot;&gt;Nope&lt;/a&gt;.

That&#039;s a good question!
This illustration was pretty simple, but the idea of connecting a container to the STL allows to use more elaborate algorithms on it, for instance std::set_difference.
I&#039;ll add that to the post, thanks.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.fluentcpp.com/2017/11/24/how-to-use-the-stl-in-legacy-code/#comment-681">Nope</a>.</p>
<p>That&#8217;s a good question!<br />
This illustration was pretty simple, but the idea of connecting a container to the STL allows to use more elaborate algorithms on it, for instance std::set_difference.<br />
I&#8217;ll add that to the post, thanks.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nope		</title>
		<link>https://www.fluentcpp.com/2017/11/24/how-to-use-the-stl-in-legacy-code/#comment-681</link>

		<dc:creator><![CDATA[Nope]]></dc:creator>
		<pubDate>Fri, 24 Nov 2017 15:01:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=1624#comment-681</guid>

					<description><![CDATA[I am missing something.
why not just a one-line ranged-for-loop?
`for (const auto&#038; i: inputs) addInRepository(f(i), repo);`]]></description>
			<content:encoded><![CDATA[<p>I am missing something.<br />
why not just a one-line ranged-for-loop?<br />
`for (const auto&amp; i: inputs) addInRepository(f(i), repo);`</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jonathan Boccara		</title>
		<link>https://www.fluentcpp.com/2017/11/24/how-to-use-the-stl-in-legacy-code/#comment-680</link>

		<dc:creator><![CDATA[Jonathan Boccara]]></dc:creator>
		<pubDate>Fri, 24 Nov 2017 09:23:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=1624#comment-680</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.fluentcpp.com/2017/11/24/how-to-use-the-stl-in-legacy-code/#comment-679&quot;&gt;Bartlomiej Filipek&lt;/a&gt;.

Right! Fixed it, thanks.
It was actually in my backlog to write a post about the reasoning behind the deprecation of std::iterator :)]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.fluentcpp.com/2017/11/24/how-to-use-the-stl-in-legacy-code/#comment-679">Bartlomiej Filipek</a>.</p>
<p>Right! Fixed it, thanks.<br />
It was actually in my backlog to write a post about the reasoning behind the deprecation of std::iterator 🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Bartlomiej Filipek		</title>
		<link>https://www.fluentcpp.com/2017/11/24/how-to-use-the-stl-in-legacy-code/#comment-679</link>

		<dc:creator><![CDATA[Bartlomiej Filipek]]></dc:creator>
		<pubDate>Fri, 24 Nov 2017 08:13:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=1624#comment-679</guid>

					<description><![CDATA[just to let you know: std::iterator seems to be deprecated in C++17
(your custom_insert_iterator is based on it now)

http://en.cppreference.com/w/cpp/iterator/iterator

http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0174r2.html#2.1

(it might be a good idea to write and explain reasoning behind this :))]]></description>
			<content:encoded><![CDATA[<p>just to let you know: std::iterator seems to be deprecated in C++17<br />
(your custom_insert_iterator is based on it now)</p>
<p><a href="http://en.cppreference.com/w/cpp/iterator/iterator" rel="nofollow ugc">http://en.cppreference.com/w/cpp/iterator/iterator</a></p>
<p><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0174r2.html#2.1" rel="nofollow ugc">http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2016/p0174r2.html#2.1</a></p>
<p>(it might be a good idea to write and explain reasoning behind this :))</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
