- A "better" C++ - 2 Updates
- Simple use of priority queue - 1 Update
Wouter van Ooijen <wouter@voti.nl>: Nov 30 10:56PM +0100 Op 30-Nov-15 om 10:22 PM schreef Lynn McGuire: > Here are the current top 50 computer languages by searches. Assembly is > #11. > http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html Wow, yet another generator of heaps of numbers, without any clear indication how they are derived. Wouter |
Lynn McGuire <lmc@winsim.com>: Nov 30 04:56PM -0600 On 11/30/2015 3:56 PM, Wouter van Ooijen wrote: >> http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html > Wow, yet another generator of heaps of numbers, without any clear indication how they are derived. > Wouter Here you go: http://www.tiobe.com/index.php/content/paperinfo/tpci/programminglanguages_definition.html I'm not sure how you can get more clear than that explanation. Lynn |
Paul <pepstein5@gmail.com>: Nov 30 09:18AM -0800 On Monday, August 10, 2015 at 10:28:32 AM UTC+1, Öö Tiib wrote: > Simplest to me feels to try to type the sentence above in C++: > std::priority_queue<int, std::vector<int>, decltype(&f)> pq( &f, vec ); > Was it what you asked? Is the below also ok? Is this a context in which the type of a function is understood to be the function pointer? Thank You, Paul std::priority_queue<int, std::vector<int>, decltype(f)> pq( f, vec ); |
You received this digest because you're subscribed to updates for this group. You can change your settings on the group membership page. To unsubscribe from this group and stop receiving emails from it send an email to comp.lang.c+++unsubscribe@googlegroups.com. |
No comments:
Post a Comment