User profile: coder777

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

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...

Socket producer consumer design
Sorry for the late reply... [quote]I hoped to use a blocking notification mechanism like SendMessag...

Socket producer consumer design
The non blocking is preferable. Normally it suffice to confirm a successful transmission at the end ...

How to ensure log folder is created before any log calls are made?
Why can't File1/File11/File21/... create their own directory/file? Maybe they create their own logg...

Why does move not erase the source?
Take a look at this: https://cplusplus.com/reference/algorithm/move/ Especially:[quote]After the c...