12 Different Ways to Filter Containers in Modern C++--Bartlomiej Filipek

Many ways.

12 Different Ways to Filter Containers in Modern C++

by Bartlomiej Filipek

From the article:

Do you know how many ways we can implement a filter function in C++?

While the problem is relatively easy to understand - take a container, copy elements that match a predicate and the return a new container - it’s good to exercise with the Standard Library and check a few ideas. We can also apply some Modern C++ techniques.

Let’s start!

ACCU 2021 Accepting Volunteer Applications

ACCU 2021 will be held online March, 10-13.

ACCU 2021 Accepting Volunteer Applications

by ACCU

From the announcement

It is our pleasure to announce the 1st year of the ACCU Conference Volunteer program! We are inviting students and young coders with an interest in C++ and software development to attend the March 10-13, 2021 online conference as Volunteers.

The Volunteer program is an excellent way for students and young coders with an interest in C++ and the development process in general to learn about language and make lasting connections with the community.

Volunteers will receive free registration.

Volunteers will handle various tasks during the conference, such as assisting at the online-help desk, in the -lobby, or in the -exhibitor hall.

Students from all fields of study are welcome to apply.

Please note that the deadline is the 16th of February

PVS-Studio Roadmap 2021

PVS-Studio can currently analyze programs written in C, C++, C#, and Java. It also supports some C++ language extensions, for example, C++/CLI and C++/CX. In 2021, we do not plan to implement support for new languages, but we plan to expand the analyzer. We want to support several new compilers (C, C++) for micro controllers and some development environments, such as CLion.

PVS-Studio Roadmap 2021

by Andrey Karpov

From the article:

We will continue to support the MISRA C and MISRA C++ coding standards. However, it's time to also support a more modern set of rules described in The AUTSAR C++14 Coding Guidelines. This document is the MISRA C++:2008 standard update, and is also based on leading code standards and research papers prepared by AUTOSAR.

6 years of weekly Meeting C++ Blogrolls!

Its now 6 years since Meeting C++ publishes a weekly blogroll for C++!

6 years of Meeting C++ Blogrolls

by Jens Weller

From the article:

Today 6 years ago the first weekly blogroll of Meeting C++ was released.

Since then it has been released on (most) Fridays, giving you a weekly overview of what happend in the C++ Blog scene and Videos in the past 7 days. Since last year...

Contracts, Preconditions & Invariants -- Andrzej Krzemienski

"Contract support" is one of the things actively developed for C++.

Contracts, Preconditions & Invariants

By Andrzej Krzemienski

About the article

This blog post is an introductory material, demonstrating what a contract is, how preconditions and invariants can be derived from the contract, and how this process can help detect bugs. Two points stressed in this post are: (1) preconditions and invariants are not “contracts” and (2) only a subset of contract-related bugs can be detected through preconditions and invariants.

Inheritance Without Pointers--Jonathan Boccara

What do you think?

Inheritance Without Pointers

by Jonathan Boccara

From the article:

Inheritance is a useful but controversial technique in C++. There is even a famous talk by Sean Parent called Inheritance is the base class of evil. So inheritance is not the most popular feature of the C++ community.

Nevertheless, inheritance is useful, and widely used by C++ developers.

What is the problem of inheritance? It has several problems, and one of them is that it forces us to manipulate objects through pointers...

Advanced Modern C++ -- Mateusz Pusz

We are happy to announce the next edition of a really well-rated Advanced Modern C++ training by Mateusz Pusz. If you would like to better understand the C++ language rules, improve your design and implementation skills, practice C++ templates, and get more experience with the Modern C++ please do not hesitate to register for an online training on March 22, 2021.

Advanced Modern C++

by Mateusz Pusz

From the article:

Training Highlights

  • Emphasis on understanding the philosophy and mechanisms of the C++ programming language and learning how to reuse this knowledge in own code
  • Particular focus on the usage of the C++ templates in practical tasks
  • Development of error-unfriendly code
  • Selection of useful patterns and techniques that prove in a demanding production code

Training Agenda

  • C++ Basics for Experts
  • Coding with performance in mind
  • Utilities that every C++ developer should know and use
  • Templates demystified

More detailed agenda can be found on the Train IT website.

Date: March 22 - 25, 2021

Location: Online training

Instructor: Mateusz Pusz

Target Audience: Developers, Architects

Level: Intermediate, Advanced