Does anyone have an experience in using Fluent Interface (or chaining method) with SIMD and other levels of parallelism using C++? Is there any performance penalty, side effects, e.g. on instruction-level?
By chaining, we define an order to perform the methods, but how this order defines an argument calculations (solution for this question was found here)?
This technique is widely popular within web-developers. I have thought to apply it for my personal project for C++, but will I lose the performance cause of that?
I really appreciate your help. Thanks in advance.