There are many functions of the same type of FI, where I is the number and index of the function, for example:
byte F5( byte COMMAND ); byte F3456( byte COMMAND ); The function performs actions in accordance with the COMMAND command. The function COMMAND_ID function returns its index I
Question: How to call a function recursively without using its name (FI ())? Perhaps somehow through this?
Thank you.
struct Foo{void operator()(){ (*this)();}};- yrHeTaTeJlb