User profile: coder777

User info
User name:coder777
History
Joined:
Number of posts:8443
Latest posts:

How to use C++ like modules in Arduino
!) There is a difference between Arduino and Raspberry PI. Arduino is more limited [regarding C++] t...

Best way to modify a variable in a class
[code]enemyList[/code] still contains copies. The variable [code]rat[/code] is not modified on line ...

Best way to modify a variable in a class
[quote]So what about this situation here? Is it a good candidate for pointers or do I need to design...

About standard strings in Linux?
Take a look at this: https://www.man7.org/linux/man-pages/man7/UTF-8.7.html Yes: char is used for ...

How to find the Type of a struct that is passed as an argument and the template arguments for a lambda function?
You need constexpr:[code]template<class Arg> Result operator()(Arg && arg) const { if const...