From the example http://www.cplusplus.com/reference/istream/istream/read/ there is the following statement
ifstream is;
...
...
if (is) { // What overloaded operater of **is** object is called here
....
}
What overloaded operator of is object is called ?