aboutsummaryrefslogtreecommitdiffstats
path: root/eval/src/vespa/eval/eval/test/value_compare.h
blob: 8f80e9d95663a106ce541ea09e50af420dde5967 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright Vespa.ai. 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);

}