Column-oriented GPU-accelerated Database Management System
CoGaDB
|
#include <iostream>
#include <string>
#include <algorithm>
Go to the source code of this file.
Classes | |
class | CoGaDB::SQL::position |
Abstract a position. More... | |
Namespaces | |
namespace | CoGaDB |
The global namespace of the programming tasks, to avoid name claches with other libraries. | |
namespace | CoGaDB::SQL |
Functions | |
const position & | CoGaDB::SQL::operator+= (position &res, const int width) |
Add and assign a position. | |
const position | CoGaDB::SQL::operator+ (const position &begin, const int width) |
Add two position objects. | |
const position & | CoGaDB::SQL::operator-= (position &res, const int width) |
Add and assign a position. | |
const position | CoGaDB::SQL::operator- (const position &begin, const int width) |
Add two position objects. | |
bool | CoGaDB::SQL::operator== (const position &pos1, const position &pos2) |
Compare two position objects. | |
bool | CoGaDB::SQL::operator!= (const position &pos1, const position &pos2) |
Compare two position objects. | |
std::ostream & | CoGaDB::SQL::operator<< (std::ostream &ostr, const position &pos) |
Intercept output stream redirection. |
Define the CoGaDB::SQL::position class.