When it comes to constructors, adding the keyword explicit prevents an enthusiastic compiler from creating an object when it was not the programmer’s first intention. Is such mechanism available for casting operators too?
struct Foo
{
operator std::string() const;
};
Here, for instance, I would like to be able to cast Foo into a std::string, but I don’t want such cast to happen implicitly.