aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src/vespa/eval/eval/test/value_compare.h
blob: 587ed5b646af81973a7bcd444e7dd889bfb6b90d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include <vespa/eval/eval/value.h>

namespace vespalib::eval {

bool operator==(const Value &lhs, const Value &rhs);

std::ostream &operator<<(std::ostream &out, const Value &value);

}