We're sorry but this page doesn't work properly without JavaScript enabled. Please enable it to continue.
Feedback

When order does not matter

Formal Metadata

Title
When order does not matter
Title of Series
Number of Parts
163
Author
License
CC Attribution - NonCommercial - ShareAlike 3.0 Unported:
You are free to use, adapt and copy, distribute and transmit the work or content in adapted or unchanged form for any legal and non-commercial purpose as long as the work is attributed to the author in the manner specified by the author or licensor and the work or content is shared also in adapted form only under the conditions of this
Identifiers
Publisher
Release Date
Language

Content Metadata

Subject Area
Genre
Abstract
When programming in C++ arguments to function calls are always passed in a predefined order with a type checking. passing them in a wrong order or using a wrong type for them will typically result in a compilation error. This is a feature... most of the time. There are situations when possibility to change order or not to pass some arguments (not necessary the last one(s)) is a huge advantage. during the presentation a case study for such a situation will be presented, along with a template-based solution, using standard modern C++.