In computer science, polymorphism is a programming language feature that allows values of different data types to be handled using a uniform interface.
7
votes
6answers
581 views
Fluent interface and polymorphism
EDIT: For further improvements see the related question: Variadic templates and pointers to member functions to achieve a named-parameters interface in C++
I would like to improve the interfaces of ...
6
votes
1answer
271 views
Variadic templates and pointers to member functions to achieve a named-parameters interface in C++
I studied a bit and packed all the suggestions that I received here: Fluent interface and polymorphism and I came up with this:
...