taco-db
0.1.0
|
#include "tdb.h"
#include <functional>
#include "extsort/ItemIterator.h"
#include "storage/VarlenDataPage.h"
#include "storage/FileManager.h"
Go to the source code of this file.
Classes | |
class | taco::ExternalSort |
ExternalSort is a general utility class to do external sorting on any number of general bytes. More... | |
class | taco::ExternalSort::OutputIterator |
The output operator that can used to scan through the output of this ExternalSort instance in ascending order defined by comp . More... | |
Namespaces | |
taco | |
Typedefs | |
typedef std::function< int(const char *item1, const char *item2)> | taco::SortCompareFunction |
SortCompareFunction compares item1 and item2 and returns a negative integer if item1 < item2 , 0 if they equal, or a positive integer if item1 > item2 . More... | |