Classes | |
class | location |
Abstract a location. More... | |
class | position |
Abstract a position. More... | |
class | stack |
class | slice |
Present a slice of the top of a stack. More... | |
Functions | |
const location | operator+ (const location &begin, const location &end) |
Join two location objects to create a location. | |
const location | operator+ (const location &begin, unsigned int width) |
Add two location objects. | |
location & | operator+= (location &res, unsigned int width) |
Add and assign a location. | |
bool | operator== (const location &loc1, const location &loc2) |
Compare two location objects. | |
bool | operator!= (const location &loc1, const location &loc2) |
Compare two location objects. | |
std::ostream & | operator<< (std::ostream &ostr, const location &loc) |
Intercept output stream redirection. | |
const position & | operator+= (position &res, const int width) |
Add and assign a position. | |
const position | operator+ (const position &begin, const int width) |
Add two position objects. | |
const position & | operator-= (position &res, const int width) |
Add and assign a position. | |
const position | operator- (const position &begin, const int width) |
Add two position objects. | |
bool | operator== (const position &pos1, const position &pos2) |
Compare two position objects. | |
bool | operator!= (const position &pos1, const position &pos2) |
Compare two position objects. | |
std::ostream & | operator<< (std::ostream &ostr, const position &pos) |
Intercept output stream redirection. |
bool neverclaimyy::operator!= | ( | const location & | loc1, | |
const location & | loc2 | |||
) | [inline] |
Compare two location objects.
bool neverclaimyy::operator!= | ( | const position & | pos1, | |
const position & | pos2 | |||
) | [inline] |
Compare two position objects.
const location neverclaimyy::operator+ | ( | const location & | begin, | |
const location & | end | |||
) | [inline] |
Join two location objects to create a location.
References neverclaimyy::location::end.
const position neverclaimyy::operator+ | ( | const position & | begin, | |
const int | width | |||
) | [inline] |
Add two position objects.
const location neverclaimyy::operator+ | ( | const location & | begin, | |
unsigned int | width | |||
) | [inline] |
Add two location objects.
References neverclaimyy::location::columns().
location& neverclaimyy::operator+= | ( | location & | res, | |
unsigned int | width | |||
) | [inline] |
Add and assign a location.
References neverclaimyy::location::columns().
const position& neverclaimyy::operator+= | ( | position & | res, | |
const int | width | |||
) | [inline] |
Add and assign a position.
References neverclaimyy::position::columns().
const position neverclaimyy::operator- | ( | const position & | begin, | |
const int | width | |||
) | [inline] |
Add two position objects.
const position& neverclaimyy::operator-= | ( | position & | res, | |
const int | width | |||
) | [inline] |
Add and assign a position.
std::ostream& neverclaimyy::operator<< | ( | std::ostream & | ostr, | |
const location & | loc | |||
) | [inline] |
Intercept output stream redirection.
ostr | the destination output stream | |
loc | a reference to the location to redirect |
Avoid duplicate information.
std::ostream& neverclaimyy::operator<< | ( | std::ostream & | ostr, | |
const position & | pos | |||
) | [inline] |
Intercept output stream redirection.
ostr | the destination output stream | |
pos | a reference to the position to redirect |
References neverclaimyy::position::column, neverclaimyy::position::filename, and neverclaimyy::position::line.
bool neverclaimyy::operator== | ( | const location & | loc1, | |
const location & | loc2 | |||
) | [inline] |
Compare two location objects.
bool neverclaimyy::operator== | ( | const position & | pos1, | |
const position & | pos2 | |||
) | [inline] |
Compare two position objects.
References neverclaimyy::position::column, neverclaimyy::position::filename, and neverclaimyy::position::line.