python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
noexcept preservation using bind
I have a problem with preservation of noexcept specifier in std::bind, using C++17.
In GCC and Clang is not preserved, but in MSVC it is. It seems that using bind with a function with noexcept specifi...
Daniel Barrientos
Votes: 0
Answers: 1
Function pointer which accepts both with and without noexcept
I have some utility code that I've been using for years to safely call the ctype family of functions, it looks like this:
template<int (&F)(int)>
int safe_ctype(unsigned char c) {
return...

Evan Teran
Votes: 0
Answers: 2
Can getters be marked `noexcept`?
For a class such as this:
class CharMatrix
{
public:
.
.
.
private:
int m_Y_AxisLen;
int m_X_AxisLen;
char m_fillCharacter;
mutable std::vector< std::vector<char> > m_char...
digito_evo
Votes: 0
Answers: 1
Should Lippincott functions be declared noexcept?
EDIT: Another way to ask this question, in perspective, is to ask: Should Lippincott functions "catch all"?
Should Lippincott functions be declared noexcept?, does it matter?
After all, a ...
alfC
Votes: 0
Answers: 1