 
      
    | You are here | www.fluentcpp.com | ||
| | | | | erikmcclure.com | |
| | | | | [ 1 · 2 · 3 · 4 · 5 · 6 · 7 ] If you are familiar with C#, you should be familiar with the difference between C#'s struct and class declarations. Namely, a struct is a value type and a class is a reference type, meaning that if you pass a struct to a function, its default behavior is for the entire struct to be copied into the function's parameter, so any modifications made to it won't affect whatever was passed in. | |
| | | | | mpark.github.io | |
| | | | | Can we work around the limitations of non-type template parameters? | |
| | | | | studiofreya.org | |
| | | | | ||
| | | | | www.softdevtube.com | |
| | | Passing data through a pipeline of transformations is an alternative approach to classic Object-Oriented Programming (OOP). The LINQ methods in .NET are designed around this, but the pipeline approach can be used for so much more than manipulating collections. This presentation looks at pipeline-oriented programming and how it relates to functional programming, the open-closed principle, | ||