Edges data structure now supports multiple edge filtering (implicit OR)

Summary: - modified all utils/algorithm functions to be inline and in the utils namespace

Reviewers: teon.banek

Reviewed By: teon.banek

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D830
This commit is contained in:
florijan
2017-09-26 12:51:52 +02:00
parent f91aa7b8fe
commit a9381df09e
26 changed files with 447 additions and 421 deletions

View File

@@ -19,12 +19,12 @@ namespace std {
// Overloads for printing resulting rows from a query.
std::ostream &operator<<(std::ostream &stream,
const std::vector<TypedValue> &row) {
PrintIterable(stream, row);
utils::PrintIterable(stream, row);
return stream;
}
std::ostream &operator<<(std::ostream &stream,
const std::vector<std::vector<TypedValue>> &rows) {
PrintIterable(stream, rows, "\n");
utils::PrintIterable(stream, rows, "\n");
return stream;
}