User profile: prestokeys

User info
User name:prestokeys
Bio:Recreational programmer who started learning in 2013. Currently addicted as I learn more and more.
History
Joined:
Number of posts:357
Latest posts:

Encrypting any text
I need to write a program that transforms all characters of text typed into std::cin into unreadable...

When to use decltype(auto) versus auto?
Is there ever a case where decltype(auto) fails in certain situations when auto or auto& would have ...

Iterating over a parameter pack??
[code] #include <iostream> template <typename... T_values> struct Thing { void something_else(T...

Help with ambiguity
Here's one way I've found: [code]#include <iostream> #include <tuple> #include <utility> struct Ot...

Help with ambiguity
Can someone resolve this ambiguity for me? The function 'test' is supposed to determine how many ar...