The safe-bool-idiom tag has no wiki summary.
35
votes
7answers
673 views
Are there cases where a typedef is absolutely necessary?
Consider the following excerpt from the safe bool idiom:
typedef void (Testable::*bool_type)() const;
operator bool_type() const;
Is it possible to declare the conversion function without the ...
33
votes
2answers
721 views
Is the safe-bool idiom obsolete in C++11?
This answer of @R. Martinho Fernandes shows, that the safe-bool idiom is apperently deprecated in C++11, as it can be replaced by a simple
explicit operator bool() const;
according to the standard ...
9
votes
2answers
218 views
const-correctness and the safe bool idiom
I have another question related to the safe bool idiom:
typedef void (Testable::*bool_type)() const; // const necessary?
void this_type_does_not_support_comparisons() const {} // const ...
7
votes
2answers
268 views
Is there a safe bool idiom helper in boost? [closed]
25% of programmers work time is spended by checking if the required code already exist.
I'm searching for a base class for implementing the safe bool idiom.
4
votes
2answers
88 views
Incompatibilities between safe bool idiom and explicit operator bool
I'm thinking of replacing all the instances of safe bool idiom by explicit operator bool in code which already uses C++11 features (so the fact that older compilers don't recognized explicit ...
4
votes
1answer
120 views
How does “contextual conversion” with `&&` and `||` operators work in conjunction with user-defined operator overloads?
From @Xeo's excellent c++-faq question: Is the safe-bool idiom obsolete? I learned that the safe bool idiom is no longer needed, because an explicit user-defined conversion to bool will be ...
4
votes
3answers
233 views
Weird compiler error and template inheritance
Could someone explain me why this code:
class safe_bool_base
{ //13
protected:
typedef void (safe_bool_base::*bool_type)() const;
void this_type_does_not_support_comparisons() ...
1
vote
2answers
197 views
C++ safe boolean idiom cannot compile with Visual C++ 10(2010)
Hey guys, I have derived my class from the C++ safe bool idiom class from this page : The Safe Bool Idiom by Bjorn Karlsson
class Element : public safe_bool<>
{
public:
bool Exists() const;
...
0
votes
1answer
105 views
How does the safe bool idiom bool_type (and the safe bool idiom) work?
I was pointed to the 'safe bool idiom', and after trying to decipher what is going on (the explanation supplied on the site was not sufficient enough to grant me understanding of why it works), I ...