chaining

0

Описание

Provides a way to chaining function with return value control.

Языки

  • C++100%
3 года назад
3 года назад
3 года назад
README.md

chaining

Provides a way to chaining function with return value control. Similar using std::expected in C++23, but use C++17.

Example:

You have some function

and use

output:

call f1 call f2 with arg 3 call f3 with args 0.1 and some other

or use that

output:

call f1 call f2Null with arg 3