Click here to Skip to main content
15,881,413 members
Articles / Programming Languages / C++14

My Top 5 C++ Proposals for October 2014

Rate me:
Please Sign up or sign in to vote.
5.00/5 (4 votes)
25 Oct 2014CPOL4 min read 13.1K   1   8
A list of my top 5 interesting C++ proposals.for pre-Urbana mailing. Unified Syntax Call, Coroutines, array_view ranges and modules.

Several days ago, at isocpp.org, there were tons of different C++ proposals' updates. Each day, there were several posts describing each application. What was the reason of it?

As it appeared, 10th October 2014 was the deadline for the pre-Urbana mailing. Now the whole list is available here at wg21. From 3rd till 8th November, there will be WG21 meeting in Urbana-Champaign, IL.

Below, you can find a list of my top 5 interesting proposals.

1. Unified Call Syntax

[PDF] Unified Call Syntax

And here is the reddit discussion thread

Summary:

Give possibility to call non-member functions like member ones.

C++
void func(MyClass test, int a, int b);

could be called:

C++
test.func(0, 1);

What's even better, it could be used for C libraries:

C++
FILE* file = ... ;
file->fseek(0, SEEK_BEG); 

What are the advantages?

  • Unification (as the name suggests :)). Single style for members and non member functions.
  • Discoverability. It is usually faster to put object first, wait for IDE's autocomplete and then discover what methods/functions are available for the object.
  • Nonmember nonfriends increase encapsulation as Scott Meyers wrote.
  • The proposal suggests that the "this" parameter might be in any place of the param lists - not only in the first place.

2. Ranges

Ranges for the Standard Library: Revision 1

And the corresponding blog post from E. Neibler

Very practical and easy to use concept:

C++
std::vector v = ...;
std::sort(v);
// not: std::sort(std::begin(v), std::end(v)); !!

So, rather than taking two iterators: begin and end, you would take a single, lightweight object: a range.

A range is an object that refers to a sequence of elements, conceptually similar to a pair of iterators

  • Adapted from boost range and Adobe ASL libraries. Additionally, taking ideas from D Standard Library Ranges
  • Reduces the possibility to mismatch iterators - should be less error prone
  • Simplifies the code
  • Adds possibility to introduce range adapters: filtering a ranges
    • For instance: auto rng = v | view::reverse (v is a container)
  • A range does not own elements from underlying container

3. Modules

[PDF] A Module System for C++ (Revision 2)

C++ from the beginning has been using C style of building the code (around 40 year-old method!). It basically compiles independent CPP modules and then links them together. Every header file's content is copied into a corresponding translation unit. You all know it... for a huge project, such way of building creates a huge problem and the build time is dramatically long, especially when we add templates.

All we want is to be able to write:

C++
import std.vector; 
import std.string; 
import std.iostream;

instead of:

C++
#include <vector>
#include <string>
#include <iostream>

What's the main problem, why we are still forced to use headers? Mainly because, header files might contain a lot of macros and implementation code. So each translation unit might get a bit different result from preprocessor. That means, for each translation, unit header files must be compiled/processed separately. In short: a lot of processing (usually) of the same code over and over.

The proposal:

  • Modules will coexist with the current method. We cannot easily replace preprocessor.
  • Direct language support for modules (a module and export keyword)
  • A module unit should be immune to macros and any preprocessor directives. Also, the order of consecutive import declarations should be irrelevant.

4. Multidimensional Bounds, Index and array_view

Multidimensional bounds, index and array_view, revision 4

And Lukasz's presentation from CppCon 2014 about the idea @github and @youtube

The proposal addresses the problem of using a contiguous data. We would like to have one way of handling different array concepts:

C++
int old_skool_array[1000];
std::array<int, 1000> std_array;
std::vector<int> vec(1000);
std::dynarray<int> dyn(1000); 

Maybe, there is something better than old school C way:

C++
int raw(int* ptr, size_t size) 

The proposal:

  • Add `std::arrayview', similar to experimental std::stringview
  • Extensible to support multidimensional arrays: array_view<int, 3>
  • Easy to use with multidimensional arrays: bounds, indexes and iterators, slicing, sections.
  • Possibility to use it with Parallelism concept

5. Resumable Functions

[PDF] Resumable Functions v.2

And the reddit discussion thread and here

Resumable functions means stackless coroutines. In other words, it is a routine that supports suspend and resume operations and it has no call stack. Or: a small lightweight program inside your code.

Stackless option gives the possibility to have millions of concurrent couroutines. Each stack is 1MB on Windows and 2MB on Linux, so if a couroutine has one, it would quickly exhaust available system memory.

The proposal adds two keywords await and yield.

await is used to suspend the coroutine and wait for another task to finish.

yield can be used to implement Generator concept (like C# IEnumerable ):

C++
generator<int> test(int n)    {
    while (n-- > 0) {
        yield n;
    }
}
int main() {
    for (auto v : test(35)) {
        std::cout << v << std::endl;
    }
}

Your Turn

What are your types? What else should be included in the list?

Links

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Poland Poland
Software developer interested in creating great code and passionate about teaching.

Author of C++17 In Detail - a book that will teach you the latest features of C++17!

I have around 11 years of professional experience in C++/Windows/Visual Studio programming. Plus other technologies like: OpenGL, game development, performance optimization.

In 2018 I was awarded by Microsoft as MVP, Developer Technologies.

If you like my articles please subscribe to my weekly C++ blog or just visit www.bfilipek.com.

Comments and Discussions

 
QuestionComplexity Pin
geoyar27-Oct-14 14:46
professionalgeoyar27-Oct-14 14:46 
Some additions to C++ in the last ISO standard are wonderful, some are not. Now, after three years the new standard is coming. It means new additions, new inventions. If we will stay the course, we will end up with the programming language that needs more time to master that the interval between standard's renewals. See what I mean?
I think that the ISO should think not only about finessing the language, but also about guys who use C++ to make living. Will we push them to C# and Java? So only absolutely necessary additions must be done. Other way, C++ will die in confines of academia/
Questionadding Pin
Member 1206160027-Oct-14 11:43
Member 1206160027-Oct-14 11:43 
AnswerRe: adding Pin
Bartlomiej Filipek28-Oct-14 3:05
Bartlomiej Filipek28-Oct-14 3:05 
QuestionMy wish Pin
Bob100027-Oct-14 10:12
professionalBob100027-Oct-14 10:12 
AnswerRe: My wish Pin
Bartlomiej Filipek27-Oct-14 21:33
Bartlomiej Filipek27-Oct-14 21:33 
GeneralRe: My wish Pin
Bob100028-Oct-14 7:23
professionalBob100028-Oct-14 7:23 
QuestionRe: My Top 5 C++ Proposals for October 2014 Pin
umlcat27-Oct-14 7:57
umlcat27-Oct-14 7:57 
AnswerRe: My Top 5 C++ Proposals for October 2014 Pin
Bartlomiej Filipek27-Oct-14 21:31
Bartlomiej Filipek27-Oct-14 21:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.