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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user