<?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: Moving Ranges Around with STL Algorithms	</title>
	<atom:link href="https://www.fluentcpp.com/2018/04/13/moving-ranges-stl/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.fluentcpp.com/2018/04/13/moving-ranges-stl/</link>
	<description>Jonathan Boccara&#039;s blog</description>
	<lastBuildDate>Sun, 03 Jun 2018 23:12:42 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.5.3</generator>
	<item>
		<title>
		By: Edoardo Morandi		</title>
		<link>https://www.fluentcpp.com/2018/04/13/moving-ranges-stl/#comment-933</link>

		<dc:creator><![CDATA[Edoardo Morandi]]></dc:creator>
		<pubDate>Sun, 22 Apr 2018 14:57:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=2621#comment-933</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.fluentcpp.com/2018/04/13/moving-ranges-stl/#comment-932&quot;&gt;Jonathan Boccara&lt;/a&gt;.

Yes, I was talking about the `std::swap` because it is the prerequisite for many algorithms. In my projects I am already using many constexpr functions ported from std (including `swap`), but is an awful copy-and-paste work from stdlib. I was hoping to have much more constexpr things in c++20, but at this point I am a bit hopeless...]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.fluentcpp.com/2018/04/13/moving-ranges-stl/#comment-932">Jonathan Boccara</a>.</p>
<p>Yes, I was talking about the `std::swap` because it is the prerequisite for many algorithms. In my projects I am already using many constexpr functions ported from std (including `swap`), but is an awful copy-and-paste work from stdlib. I was hoping to have much more constexpr things in c++20, but at this point I am a bit hopeless&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jonathan Boccara		</title>
		<link>https://www.fluentcpp.com/2018/04/13/moving-ranges-stl/#comment-932</link>

		<dc:creator><![CDATA[Jonathan Boccara]]></dc:creator>
		<pubDate>Sat, 21 Apr 2018 21:58:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=2621#comment-932</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.fluentcpp.com/2018/04/13/moving-ranges-stl/#comment-928&quot;&gt;Edoardo Morandi&lt;/a&gt;.

Hi Edoardo, I don&#039;t think that&#039;s an error in the wiki as some STL algorithms, such as std::sort also, shouldn&#039;t be constexpr in C++20.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.fluentcpp.com/2018/04/13/moving-ranges-stl/#comment-928">Edoardo Morandi</a>.</p>
<p>Hi Edoardo, I don&#8217;t think that&#8217;s an error in the wiki as some STL algorithms, such as std::sort also, shouldn&#8217;t be constexpr in C++20.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ole Erik Peistorpet		</title>
		<link>https://www.fluentcpp.com/2018/04/13/moving-ranges-stl/#comment-929</link>

		<dc:creator><![CDATA[Ole Erik Peistorpet]]></dc:creator>
		<pubDate>Tue, 17 Apr 2018 16:54:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=2621#comment-929</guid>

					<description><![CDATA[Remember that back() is the last element in a range (with greatest index). As such, the names copy_backward and move_backward are consistent with that.]]></description>
			<content:encoded><![CDATA[<p>Remember that back() is the last element in a range (with greatest index). As such, the names copy_backward and move_backward are consistent with that.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Edoardo Morandi		</title>
		<link>https://www.fluentcpp.com/2018/04/13/moving-ranges-stl/#comment-928</link>

		<dc:creator><![CDATA[Edoardo Morandi]]></dc:creator>
		<pubDate>Tue, 17 Apr 2018 07:26:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=2621#comment-928</guid>

					<description><![CDATA[Inside cppreference.com I noticed that neither `std::swap` or `std::swap_range` are marked constexpr with C++20. Is it a defect of the wiki or there are some troubles constexpr-ing these two functions for the next standard?]]></description>
			<content:encoded><![CDATA[<p>Inside cppreference.com I noticed that neither `std::swap` or `std::swap_range` are marked constexpr with C++20. Is it a defect of the wiki or there are some troubles constexpr-ing these two functions for the next standard?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Davidbrcz		</title>
		<link>https://www.fluentcpp.com/2018/04/13/moving-ranges-stl/#comment-925</link>

		<dc:creator><![CDATA[Davidbrcz]]></dc:creator>
		<pubDate>Fri, 13 Apr 2018 07:20:00 +0000</pubDate>
		<guid isPermaLink="false">https://www.fluentcpp.com/?p=2621#comment-925</guid>

					<description><![CDATA[I think it was Sean Parent in one of his talks who showed that shift_right and shift_left can already be implemented in term of std::rotate]]></description>
			<content:encoded><![CDATA[<p>I think it was Sean Parent in one of his talks who showed that shift_right and shift_left can already be implemented in term of std::rotate</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
