<div dir="ltr"><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Mar 3, 2014 at 12:01 AM, Chris Lattner <span dir="ltr"><<a href="mailto:sabre@nondot.org" target="_blank">sabre@nondot.org</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="">On Mar 2, 2014, at 10:47 PM, Chandler Carruth <<a href="mailto:chandlerc@google.com" target="_blank">chandlerc@google.com</a>> wrote:<br>
<div><blockquote type="cite"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word">
<div><div><div><blockquote type="cite"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
<div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">I'm not aware of the prior art or standards are here, but I think that a global reverse() adapter is the way to go.  Likewise, we should have a standard "enumerate()" adaptor like python.</blockquote>



<div><br></div></div><div>I definitely prefer the global adaptor pattern.  As for prior art, I had played with it a bit, and came up with <a href="https://gist.github.com/compnerd/5694186" target="_blank">https://gist.github.com/compnerd/5694186</a> a while back.</div>


</blockquote></div><br>Yea, there is a pretty strong move toward range adaptors. If possible, I'm going to work on contributing a basic selection of them to LLVM's ADT specifically to address the immediate needs of range-based for loops.</div>


</div>
</blockquote></div><br></div></div><div>Sounds good.  We also have to decide what to do with Function::arg_begin() for example (and all the other secondary ranges hanging off IR and other things).  IMO, "for (auto &arg : F.getArguments())" makes the most sense.</div>

</div></blockquote><div><br></div><div>I was actually going to check in this, but I can post it for review if folks are worried.</div><div><br></div><div>My plan was to provide an implementation of std::iterator_range<T> and then provide 'F.arguments()' which returns it.</div>

</div></div></div></blockquote><br></div></div><div>Nice.  What's the logic behind .arguments() vs .getArguments()?  I don't have a strong opinion either way, but there should be rationale.</div></blockquote></div>
<br></div><div class="gmail_extra">In the best case 'get' doesn't really add any meaning, and in the worst case it is actively misleading</div><div class="gmail_extra"><br></div><div class="gmail_extra">For example, you might iterate over operands, and assign through the iterator to mutate them.</div>
<div class="gmail_extra"><br></div><div class="gmail_extra">Really, these operate as range-views over some sequence. It seems particularly easy to teach foo_begin(), foo_end() -> foos() as well.</div></div>