Skip to content

Latest commit

 

History

History
29 lines (15 loc) · 740 Bytes

File metadata and controls

29 lines (15 loc) · 740 Bytes

C++ Functional Programming

This is a very wide topic, It’s a programming paradigm. With modern C++ has gain attention again. Next link presents “just a simple” example how can be used in C++.

higher order function

std::invoke

std::functional

Other examples

object A calls a function on object B

A->B

object A calls a function on object B and then B calls an function on object A

A->B->A

Call Methods on other Objects

Some examples how to use std::function<…>

Source Code